﻿/* Global Services dropdown visibility control */
/* (Removed custom display toggles for services dropdown to match existing solutions behavior) */
/* ===========================================
   PROGRESS BAR - SCROLL INDICATOR
   =========================================== */

/* Visual indicator showing page scroll progress */
.scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 5;
}

/* Dual bar progress ring for Clients - Services Overview (Creative Innovation Customized for Your Brand) */
.services-overview .services-grid .service-item.progress-ring {
    --track: #1a1a1a !important;
    position: relative;
}
body.light-theme .services-overview .services-grid .service-item.progress-ring {
    --track: #ffffff !important;
}
.services-overview .services-grid .service-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Creativity - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.services-overview .services-grid .service-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.services-overview .services-grid .service-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.services-overview .services-grid .service-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Pseudo-elements for dual bar effect on Clients Services Overview */
.services-overview .services-grid .service-item.progress-ring::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: var(--ring-width, 2px);
    background: conic-gradient(from calc(var(--s, 0deg) + 180deg), 
        var(--accent-2) 0deg, 
        color-mix(in srgb, var(--accent-2) 0%, transparent) var(--trail, 70deg), 
        transparent var(--trail, 70deg), 
        transparent 360deg);
    border-radius: inherit;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    animation: pr-scan-reverse 2.8s linear infinite;
    z-index: 2;
}

.services-overview .services-grid .service-item.progress-ring::after {
    content: '';
    position: absolute;
    inset: 0;
    padding: var(--ring-width, 2px);
    background: conic-gradient(from var(--s, 0deg), 
        var(--accent) 0deg, 
        color-mix(in srgb, var(--accent) 0%, transparent) var(--trail, 70deg), 
        transparent var(--trail, 70deg), 
        transparent 360deg);
    border-radius: inherit;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    animation: pr-scan 2.8s linear infinite;
    z-index: 3;
}
/* ===========================================
   SCROLL INDICATOR TEXT
   =========================================== */

/* Text styling for scroll indicator */
.scroll-text {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    letter-spacing: 0.2px;
}



/* ===========================================
   SCROLL MOUSE ELEMENT
   =========================================== */

/* Mouse shape for scroll indicator */
.scroll-mouse .mouse-shape {
    width: 32px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.85);
    border-radius: 16px;
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 6px;
    position: relative;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.18);
}

/* Mouse wheel animation */
.scroll-mouse .wheel {
    width: 7px;
    height: 12px;
    background: linear-gradient(180deg, #8b5cf6, #a855f7);
    border-radius: 3px;
    animation: wheelMove 1.4s ease-in-out infinite;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.45);
}

@keyframes wheelMove {
    0% { transform: translateY(0); opacity: 1; }
    70% { transform: translateY(12px); opacity: 0.2; }
    100% { transform: translateY(0); opacity: 0.9; }
}

/* Responsive styles removed for desktop-only version */
/* Variables */

/* Ensure all content is visible immediately for pages without progressive loading */
/* This will be overridden by page-specific styles for pages that should have progressive loading */
section,
.product-card,
.testimonial-card,
.stat-card,
.feature-card,
.industry-card,
.service-card {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none !important;
}
:root {
    --primary-color: #6a0dad; /* Purple - main SINSAJO color */
    --secondary-color: #9370DB; /* Medium Purple - secondary color */
    --text-color: #1f2937;
    --light-text: #6b7280;
    --background-color: #ffffff;
    --light-bg: #f9fafb;
    --dark-bg: #111827;
    --accent-color: #8a2be2; /* Blue Violet - accent color */
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --radius: 8px;
    --max-width: 1200px;
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: #000000;
    scroll-padding-top: 0;
}

/* Ensure page always starts from top */
html, body {
    scroll-behavior: auto;
    scroll-padding-top: 0;
}

/* Prevent white flash during page load - only apply to pages with loading screen */
body:not(.loaded) {
    background-color: #000000 !important;
}

body.loaded {
    background-color: var(--background-color);
}

body {
    font-family: 'Inter', 'Inter Fallback', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    transition: all 0.3s ease;
    background-color: var(--background-color);
    overflow-x: hidden;
    overflow-y: auto;
}

/* Ensure pages without loading screen have correct background immediately */
body.loaded {
    background-color: var(--background-color) !important;
}

/* Light Theme */
body.light-theme {
    --background-color: #ffffff;
    --text-color: #220041;
    --secondary-color: #8b5cf6;
    --accent-color: #8b5cf6;
    --light-bg: #f8fafc;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Dark Theme (Default) */
body.dark-theme {
    --background-color: #1a1a1a;
    --text-color: #ffffff;
    --secondary-color: #8b5cf6;
    --accent-color: #8b5cf6;
    --light-bg: #111827;
    --border-color: #333333;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

/* Theme Toggle Button - New Design */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    border: none;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    height: 50px;
}

.theme-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.theme-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.theme-line-1,
.theme-line-2 {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.theme-line-1 {
    margin-bottom: 2px;
}

.theme-icon-circle {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.theme-icon {
    font-size: 1.2rem;
    color: #ffffff;
}

/* Light Theme - DAY MODE (Yellow/Orange) */
body.light-theme .theme-selector .theme-toggle {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%) !important;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3) !important;
}

body.light-theme .theme-selector .theme-toggle:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4) !important;
}

/* Dark Theme - NIGHT MODE (Purple) */
body.dark-theme .theme-selector .theme-toggle {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%) !important;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3) !important;
}

body.dark-theme .theme-selector .theme-toggle:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%) !important;
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4) !important;
}

/* Theme Dropdown */
.theme-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: transparent;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    padding: 0.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10000;
}

.theme-selector:hover .theme-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.theme-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border: none;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    height: 50px;
    text-decoration: none;
}

.theme-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
}

.theme-option[data-theme="dark"] {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.theme-option[data-theme="dark"]:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.theme-option .theme-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.theme-option .theme-line-1,
.theme-option .theme-line-2 {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.theme-option .theme-line-1 {
    margin-bottom: 2px;
}

.theme-option .theme-icon-circle {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.theme-option .theme-icon {
    font-size: 1.2rem;
    color: #ffffff;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

a {
    font-family: 'Inter', 'Inter Fallback', sans-serif;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Responsive baseline: make embedded media scale on small screens */
video,
canvas,
svg {
    max-width: 100%;
    height: auto;
    display: block;
}

iframe {
    width: 100%;
    max-width: 100%;
    border: 0;
}

/* Avoid horizontal overflow from long content */
section,
.container {
    overflow-wrap: anywhere;
}

/* Mobile/tablet fallback removed for desktop-only version */

.is-phone .hero-content {
    padding-left: 12px;
    padding-right: 12px;
}

/* Language toggle: compact by default on phones, expand on tap (.hover) */
.is-phone .language-toggle {
    min-width: 40px !important;
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
    gap: 0 !important;
    justify-content: center;
}

.is-phone .language-toggle-switch .toggle-track {
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
    justify-content: center !important;
}

.is-phone .language-toggle-switch .lang-text {
    opacity: 0 !important;
    visibility: hidden !important;
    width: 0 !important;
}

.is-phone .language-toggle-switch .toggle-slider {
    left: 4px !important;
    top: 4px !important;
}

.is-phone .language-toggle-switch.active-en .toggle-slider,
.is-phone .language-toggle-switch.active-es .toggle-slider {
    left: 4px !important; /* keep compact; no slide */
}

.is-phone .language-selector.hover .language-toggle-switch .toggle-track {
    width: 120px !important;
    padding: 0 8px !important;
    justify-content: space-between !important;
}

.is-phone .language-selector.hover .language-toggle-switch .lang-text {
    opacity: 1 !important;
    visibility: visible !important;
    width: auto !important;
}

/* Variant visibility helpers: build two versions per page without duplicating files */
.desktop-only { display: block; }
.phone-only { display: none; }

:not(.is-phone) .phone-only { display: none !important; }
.is-phone .phone-only { display: block !important; }
.is-phone .desktop-only { display: none !important; }

/* Global: in phones hide any default header unless explicitly marked phone-only */
.is-phone header:not(.phone-only):not(.mobile-navbar) { display: none !important; }
.is-phone header.phone-only { display: block !important; }
.is-phone header.mobile-navbar { 
    display: block !important; 
    position: fixed !important;
    top: 10px !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    background: rgba(10, 12, 20, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    padding: 15px 20px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Mobile navbar content styles */
.is-phone header.mobile-navbar .navbar {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.is-phone header.mobile-navbar .nav-links {
    display: none !important;
}

.is-phone header.mobile-navbar .hamburger {
    display: block !important;
    cursor: pointer !important;
    z-index: 1100 !important;
}

.is-phone header.mobile-navbar .hamburger span {
    display: block !important;
    width: 24px !important;
    height: 3px !important;
    background: #fff !important;
    margin: 5px 0 !important;
    transition: all .3s ease !important;
}

/* Hide desktop navbar elements on mobile */
.is-phone header.mobile-navbar .navbar-toggle,
.is-phone header.mobile-navbar .theme-toggle {
    display: none !important;
}

/* Mobile menu styles for mobile-navbar */
.is-phone header.mobile-navbar .nav-links {
    position: fixed !important;
    top: 0 !important;
    left: -100% !important;
    right: auto !important;
    width: 82% !important;
    max-width: 360px !important;
    height: 100vh !important;
    background: rgba(10, 12, 20, 0.7) !important;
    backdrop-filter: blur(12px) !important;
    box-shadow: 8px 0 24px rgba(0,0,0,.35) !important;
    z-index: 999 !important;
    transition: left 0.3s ease !important;
    padding: 80px 0 20px 0 !important;
    text-align: left !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
}

.is-phone header.mobile-navbar .nav-links.active {
    left: 0 !important;
    pointer-events: auto !important;
}

.is-phone header.mobile-navbar .nav-links ul {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
}

.is-phone header.mobile-navbar .nav-links ul li {
    list-style: none !important;
}

.is-phone header.mobile-navbar .nav-links ul > li > a,
.is-phone header.mobile-navbar .nav-links ul > li > .platform-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    padding: 14px 20px 14px 40px !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    width: 100% !important;
    text-align: left !important;
    margin: 2px 0 !important;
}

/* Mobile dropdown menu styles */
.is-phone header.mobile-navbar .platform-dropdown-menu {
    position: relative !important;
    inset: 0 !important;
    transform: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    display: none !important;
    background: rgba(15, 15, 15, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    flex-direction: column !important;
    transition: all 0.3s ease !important;
}

.is-phone header.mobile-navbar .platform-dropdown.hover .platform-dropdown-menu {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.is-phone header.mobile-navbar .platform-dropdown-menu .menu-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 16px 20px !important;
    color: #FFFFFF !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s ease !important;
    flex-shrink: 0 !important;
    gap: 4px !important;
    cursor: default !important;
}

.is-phone header.mobile-navbar .platform-dropdown-menu .menu-item:last-child {
    border-bottom: none !important;
}

.is-phone header.mobile-navbar .platform-dropdown-menu .menu-item .menu-title {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #FFFFFF !important;
    margin-bottom: 2px !important;
    letter-spacing: -0.01em !important;
}

.is-phone header.mobile-navbar .platform-dropdown-menu .menu-item .menu-subtitle {
    font-size: 13px !important;
    font-weight: 400 !important;
    color: #e5e7eb !important;
    line-height: 1.4 !important;
    opacity: 0.9 !important;
}

/* Display utilities to combine with the helpers */
.d-block { display: block !important; }
.d-flex { display: flex !important; }
.d-inline { display: inline !important; }
.d-inline-block { display: inline-block !important; }

/* Mobile navbar behavior tied to is-phone to work regardless of pixels */
.is-phone .hamburger { display: block !important; cursor: pointer; z-index: 1100; }
.is-phone .hamburger span { display: block; width: 24px; height: 3px; background: #fff; margin: 5px 0; transition: all .3s ease; }

/* Hamburger transform to X when active */
.is-phone .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.is-phone .hamburger.active span:nth-child(2) { opacity: 0; }
.is-phone .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Ensure X icon is visible on all mobile hamburger menus */
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg) !important; }
.hamburger.active span:nth-child(2) { opacity: 0 !important; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg) !important; }

.is-phone header.phone-only .nav-links {
    position: fixed;
    top: 0;
    left: -100% !important;
    right: auto !important;
    width: 82%;
    max-width: 360px;
    height: 100vh;
    background: rgba(10, 12, 20, 0.7);
    backdrop-filter: blur(12px);
    box-shadow: 8px 0 24px rgba(0,0,0,.35);
    padding: 30px 0 20px 0 !important;
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start !important;
    width: 100% !important;
    gap: 16px;
    transition: left .3s ease !important;
    z-index: 1090;
    pointer-events: none;
    text-align: left !important;
    overflow-y: auto;
    overflow-x: hidden;
}

.is-phone header.phone-only .nav-links ul { display: flex !important; flex-direction: column; gap: 4px; }
.is-phone header.phone-only .nav-links a { color: #fff; font-weight: 600; font-size: 16px; }
.is-phone header.phone-only .nav-links.active { left: 0 !important; pointer-events: auto; }

/* Prevent body shift when menu open */
.is-phone body.menu-open { overflow: hidden !important; }

/* Mobile panel item styles and chevrons */
.is-phone header.phone-only .nav-links ul { margin: 0 !important; padding: 0 !important; display: flex !important; flex-direction: column; align-items: stretch !important; justify-content: flex-start !important; gap: 4px !important; width: 100% !important; }
.is-phone header.phone-only .nav-links ul li { list-style: none; }
.is-phone header.phone-only .nav-links ul > li > a,
.is-phone header.phone-only .nav-links ul > li > .platform-toggle,
.is-phone header.phone-only .nav-links ul > li > .company-toggle {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 20px 14px 40px !important;
    color: #ffffff;
    font-weight: 600 !important;
    font-size: 20.8px;
    width: 100%;
    text-align: left !important;
}

/* Specific font-weight for Solutions, Clients and Company buttons */
.is-phone header.phone-only .nav-links ul > li > .platform-toggle,
.is-phone header.phone-only .nav-links ul > li > .company-toggle,
.is-phone header.phone-only .nav-links ul > li > a[href*="clients"] {
    font-weight: 600 !important; /* Equivalent to 20.8px thickness */
}

/* Font-weight for all mobile menu links (including simple menus without dropdowns) */
.is-phone header.phone-only .nav-links ul > li > a {
    font-weight: 600 !important; /* Equivalent to 20.8px thickness */
}

/* Universal mobile menu font-weight for all pages */
@media screen and (max-width: 768px) {
    .nav-links ul > li > a,
    .nav-links ul > li > .platform-toggle,
    .nav-links ul > li > .company-toggle {
        font-weight: 600 !important; /* Equivalent to 20.8px thickness */
    }
}

/* Force font-weight for all mobile menu items with maximum specificity */
.nav-links ul > li > a,
.nav-links ul > li > .platform-toggle,
.nav-links ul > li > .company-toggle {
    font-weight: 600 !important; /* 20.8px thickness */
}

/* Maximum specificity for platform-toggle */
a.platform-toggle {
    font-weight: 600 !important;
}

/* Even more specific for mobile menu */
header.phone-only .nav-links ul > li > a.platform-toggle {
    font-weight: 600 !important;
}

/* Universal specificity for all mobile menu links */
body .nav-links ul > li > a,
body .nav-links ul > li > .platform-toggle,
body .nav-links ul > li > .company-toggle {
    font-weight: 600 !important;
}

/* Ultra-specific rules for mobile menu font-weight */
header .nav-links ul li a.platform-toggle,
header .nav-links ul li .platform-toggle,
.nav-links ul li a.platform-toggle,
.nav-links ul li .platform-toggle {
    font-weight: 600 !important;
}

/* Force font-weight with inline style specificity */
a[class*="platform-toggle"],
a[class*="company-toggle"] {
    font-weight: 600 !important;
}

/* Override the specific rule that was causing font-weight: 700 */
.is-phone header.phone-only .nav-links ul > li > .platform-toggle,
.is-phone header.phone-only .nav-links ul > li > .company-toggle {
    font-weight: 600 !important;
}

/* Ultra-specific override for mobile menu buttons */
body.is-phone header.phone-only .nav-links ul li a.platform-toggle,
body.is-phone header.phone-only .nav-links ul li .platform-toggle,
body.is-phone header.phone-only .nav-links ul li a.company-toggle,
body.is-phone header.phone-only .nav-links ul li .company-toggle {
    font-weight: 600 !important;
}

.is-phone header.phone-only .nav-links ul > li { margin: 2px 0; }

/* FORCE MOBILE MENU SPACING - Maximum specificity */
body.is-phone header.phone-only .nav-links ul > li > a,
body.is-phone header.phone-only .nav-links ul > li > .platform-toggle,
body.is-phone header.phone-only .nav-links ul > li > .company-toggle {
    padding-left: 40px !important;
    padding-right: 20px !important;
    padding-top: 14px !important;
    padding-bottom: 14px !important;
    margin: 2px 0 !important;
    font-weight: 600 !important; /* Force font-weight for all mobile menu items */
}

body.is-phone header.phone-only .nav-links ul {
    gap: 4px !important;
}

/* Force mobile menu to be visible when active */
.nav-links.active {
    left: 0 !important;
    pointer-events: auto !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: fixed !important;
    top: 0 !important;
    width: 82% !important;
    max-width: 360px !important;
    height: 100vh !important;
    background: rgba(10, 12, 20, 0.7) !important;
    backdrop-filter: blur(12px) !important;
    box-shadow: 8px 0 24px rgba(0,0,0,.35) !important;
    z-index: 1000 !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    padding: 30px 0 20px 0 !important;
    overflow-y: auto !important;
}



/* Brand image at top of mobile menu */
.is-phone header.phone-only .nav-links .nav-brand { 
    padding: 14px 20px 14px 40px !important; 
    display: flex !important; 
    align-items: center !important; 
    justify-content: flex-start !important; 
    text-align: left !important; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    margin-bottom: 0px !important;
    height: auto !important;
    min-height: 48px !important;
}

.is-phone header.phone-only .nav-links .nav-brand a {
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
}

.is-phone header.phone-only .nav-links .nav-brand img { 
    width: 70px !important; 
    height: auto !important; 
    display: block !important; 
    margin: 0 !important; 
    align-self: center !important;
    max-height: 32px !important;
    object-fit: contain !important;
}

.is-phone header.phone-only .platform-dropdown-menu,
.is-phone header.phone-only .company-dropdown-menu { 
    position: relative; 
    inset: 0; 
    transform: none; 
    opacity: 0; 
    visibility: hidden; 
    display: none; 
    background: rgba(15, 15, 15, 0.95); 
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); 
    padding: 0; 
    margin-top: 10px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-direction: column;
    transition: all 0.3s ease;
}

.is-phone header.phone-only .platform-dropdown.hover .platform-dropdown-menu,
.is-phone header.phone-only .company-dropdown.hover .company-dropdown-menu { 
    display: flex !important; 
    opacity: 1 !important;
    visibility: visible !important;
}

/* Mobile Solutions dropdown menu items styling - Informational only */
.is-phone header.phone-only .platform-dropdown-menu .menu-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px;
    color: #FFFFFF;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
    gap: 4px;
    cursor: default;
}

.is-phone header.phone-only .platform-dropdown-menu .menu-item:last-child {
    border-bottom: none;
}

.is-phone header.phone-only .platform-dropdown-menu .menu-item .menu-title {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 2px;
    letter-spacing: -0.01em;
}

.is-phone header.phone-only .platform-dropdown-menu .menu-item .menu-subtitle {
    font-size: 13px;
    font-weight: 400;
    color: #e5e7eb;
    line-height: 1.4;
    opacity: 0.9;
}

/* No hover effects for informational items */
.is-phone header.phone-only .platform-dropdown-menu .menu-item:hover {
    background: transparent;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0;
}

.is-phone header.phone-only .platform-dropdown-menu .menu-item:hover .menu-title {
    color: #FFFFFF;
}

.is-phone header.phone-only .platform-dropdown-menu .menu-item:hover .menu-subtitle {
    color: #e5e7eb;
}

/* Mobile Company dropdown menu items styling - Informational only */
.is-phone header.phone-only .company-dropdown-menu .menu-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px;
    color: #FFFFFF;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
    gap: 4px;
    cursor: default;
}

.is-phone header.phone-only .company-dropdown-menu .menu-item:last-child {
    border-bottom: none;
}

.is-phone header.phone-only .company-dropdown-menu .menu-item .menu-title {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 2px;
    letter-spacing: -0.01em;
}

.is-phone header.phone-only .company-dropdown-menu .menu-item .menu-subtitle {
    font-size: 13px;
    font-weight: 400;
    color: #e5e7eb;
    line-height: 1.4;
    opacity: 0.9;
}

/* No hover effects for informational items */
.is-phone header.phone-only .company-dropdown-menu .menu-item:hover {
    background: transparent;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0;
}

.is-phone header.phone-only .company-dropdown-menu .menu-item:hover .menu-title {
    color: #FFFFFF;
}

.is-phone header.phone-only .company-dropdown-menu .menu-item:hover .menu-subtitle {
    color: #e5e7eb;
}

/* Main navigation items styling - Informational only */
.is-phone header.phone-only .nav-links .nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 20px 14px 40px;
    color: #ffffff;
    font-weight: 600;
    font-size: 20.8px;
    width: 100%;
    text-align: left;
    cursor: default;
    transition: all 0.3s ease;
}

.is-phone header.phone-only .nav-links .nav-item:hover {
    background: transparent;
    color: #ffffff;
}

/* Scrollbar styling for mobile hamburger menu */
.is-phone header.phone-only .nav-links::-webkit-scrollbar {
    width: 6px;
}

.is-phone header.phone-only .nav-links::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.is-phone header.phone-only .nav-links::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.is-phone header.phone-only .nav-links::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.is-phone header.phone-only .nav-links ul > li.platform-dropdown > a::after,
.is-phone header.phone-only .nav-links ul > li.company-dropdown > a::after {
    display: inline-block;
    transform: translateX(0);
    color: #ffffff;
    opacity: 0.85;
    font-size: 20px;
}

/* Screen overlay when menu is open */
.is-phone .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(2px);
    z-index: 1085;
    opacity: 0;
    transition: opacity .3s ease;
}
.is-phone .nav-overlay.visible { opacity: 1; }

.is-phone .language-toggle .current-lang {
    opacity: 0;
    width: 0;
    visibility: hidden;
}

.is-phone .language-selector.hover .language-toggle {
    min-width: 120px !important;
    width: auto !important;
    padding: 0.5rem 0.75rem !important;
    gap: 0.4rem !important;
}

.is-phone .language-selector.hover .language-toggle .current-lang {
    opacity: 1;
    width: auto;
    visibility: visible;
}

/* Theme toggle: always compact on phones, ignore hover expansion */
.is-phone .theme-toggle-switch .toggle-track {
    width: 40px !important;
    padding: 0 !important;
    justify-content: center !important;
}

.is-phone .theme-toggle-switch.expanded .toggle-track {
    width: 40px !important;
    padding: 0 !important;
    justify-content: center !important;
}

/* Desktop: ensure language toggle looks as before (wide pill with EN/ES) */
:not(.is-phone) .language-toggle-switch .toggle-track {
    width: 120px;
    height: 40px;
    justify-content: space-between;
    padding: 0 8px;
}

:not(.is-phone) .language-toggle-switch .lang-text {
    opacity: 1;
    visibility: visible;
    width: auto;
}

.is-phone .theme-toggle-switch .theme-text,
.is-phone .theme-toggle-switch.expanded .theme-text {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: scale(0.8) !important;
}

/* Desktop navbar: prevent word breaking and keep items in one line */
/* Desktop-only version - no media query needed */
header,
.navbar,
.navbar .container,
.nav-links,
.nav-links ul {
    overflow-wrap: normal;
    word-wrap: normal;
}

.nav-links a,
.navbar a,
.header-right a {
    white-space: nowrap;
    word-break: keep-all;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', 'Inter Fallback', sans-serif;
    margin-bottom: 1rem;
    line-height: 1.2;
}

/* Sub-titles styling */
h4 {
    font-family: 'Inter', 'Inter Fallback', sans-serif;
    font-size: 19.2px;
    font-weight: 600;
    color: #1f2937; /* Default day mode color */
}

/* Specific section titles with Proxima Nova Semibold */
.products h2,
.testimonials h2,
.performance h2,
.why-choose-us h2,
.make-content h2,
.make-bottom h3,
.ai-automation-header h2 {
    font-family: "Proxima Nova Semibold", sans-serif !important;
    font-size: 48px !important;
    font-weight: 700 !important;
    color: #1f2937 !important;
}

body.dark-theme .products h2,
body.dark-theme .testimonials h2,
body.dark-theme .performance h2,
body.dark-theme .why-choose-us h2,
body.dark-theme .make-content h2,
body.dark-theme .make-bottom h3,
body.dark-theme .ai-automation-header h2 {
    color: #FFFFFF !important;
}

/* Responsive styles for specific section titles */
@media (max-width: 768px) {
    .products h2,
    .testimonials h2,
    .performance h2,
    .why-choose-us h2,
    .make-content h2,
    .make-bottom h3,
    .ai-automation-header h2 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .products h2,
    .testimonials h2,
    .performance h2,
    .why-choose-us h2,
    .make-content h2,
    .make-bottom h3,
    .ai-automation-header h2 {
        font-size: 28px;
    }
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

/* Dark theme h2 styles */
body.dark-theme h2 {
    color: #000000 !important;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    font-family: 'Inter', 'Inter Fallback', sans-serif;
    margin-bottom: 1rem;
}

.section-description {
    font-family: 'Inter', 'Inter Fallback', sans-serif;
    font-size: 1.2rem;
    color: var(--light-text);
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* Buttons */
.primary-button, .secondary-button, .cta-button {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 0.9rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.primary-button {
    background-color: var(--primary-color);
    color: white;
}

.primary-button:hover {
    background-color: #3c35c2;
    transform: translateY(-2px);
}

/* Force consistent styling for "Start Your Project" button in both themes */
.primary-button.glow-effect {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.1) !important;
    position: relative !important;
    z-index: 20 !important;
}

/* Remove all fade effects from text elements */
h1, h2, h3, h4, h5, h6, p, .section-description {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none !important;
    animation: none !important;
}

/* Remove fade effects from sections */
section {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none !important;
    animation: none !important;
}

/* Remove fade effects from cards */
.product-card, .testimonial-card, .stat-card, .feature-card, .industry-card, .service-card {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none !important;
    animation: none !important;
}

/* Advanced Loading Screen Styles */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #16213e;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 1.2s ease-out;
    overflow: hidden;
}

.loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: scale(0.95);
    transition: opacity 1.2s ease-out, visibility 1.2s ease-out, transform 1.2s ease-out;
}

.loading-container {
    text-align: center;
    color: white;
    position: relative;
    z-index: 10;
}

/* Dynamic Text with Typing Effect */
.loading-text-container {
    margin-bottom: 50px;
    position: relative;
}

.loading-text {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(124, 58, 237, 0.8);
    animation: textGlow 2s ease-in-out infinite alternate, textFloat 3s ease-in-out infinite;
    margin-bottom: 10px;
    letter-spacing: 2px;
    position: relative;
}

/* Magnetic Cursor Area */
.magnetic-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.loading-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    animation: subtitleFade 2s ease-in-out infinite alternate;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Advanced Progress Bar */
.loading-progress-container {
    margin-bottom: 40px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
}

#progress-percentage {
    color: #7c3aed;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(124, 58, 237, 0.6);
}

#progress-status {
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.loading-progress {
    width: 350px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.progress-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: progressTrack 2s ease-in-out infinite;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #7c3aed, #a855f7, #c084fc, #e879f9);
    border-radius: 3px;
    width: 0%;
    position: relative;
    transition: width 0.3s ease;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.6);
    overflow: hidden;
}

/* Liquid Effect */
.liquid-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        rgba(255, 255, 255, 0.1) 100%);
    animation: liquidFlow 2s ease-in-out infinite;
    border-radius: 3px;
}

/* Progress Waves */
.progress-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20'%3E%3Cpath d='M0,10 Q25,0 50,10 T100,10 V20 H0 Z' fill='rgba(255,255,255,0.1)'/%3E%3C/svg%3E") repeat-x;
    animation: waveFlow 3s linear infinite;
    opacity: 0.6;
}

.progress-glow {
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    bottom: -2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: progressGlow 1.5s ease-in-out infinite;
    border-radius: 3px;
}

/* Enhanced Loading Dots */
.loading-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    background: linear-gradient(45deg, #7c3aed, #a855f7);
    border-radius: 50%;
    animation: dotPulse 1.8s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.6);
}

.dot:nth-child(2) {
    animation-delay: 0.3s;
}

.dot:nth-child(3) {
    animation-delay: 0.6s;
}

/* Loading Tips */
.loading-tips {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    min-height: 20px;
}

.tip {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease;
}

.tip.active {
    opacity: 1;
    transform: translateY(0);
}

/* Advanced Animations */

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@keyframes textGlow {
    0% {
        text-shadow: 0 0 20px rgba(124, 58, 237, 0.8);
    }
    100% {
        text-shadow: 0 0 30px rgba(124, 58, 237, 1), 0 0 40px rgba(168, 85, 247, 0.6);
    }
}

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

@keyframes subtitleFade {
    0% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}

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

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

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

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

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

@keyframes magneticPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.6;
    }
}

/* Responsive Loading Screen */
@media (max-width: 768px) {
    .loading-text {
        font-size: 22px;
    }
    
    .loading-progress {
        width: 280px;
    }
    
}

@media (max-width: 480px) {
    .loading-text {
        font-size: 18px;
    }
    
    .loading-progress {
        width: 250px;
    }
    
}

.primary-button.glow-effect:hover {
    background: linear-gradient(135deg, #7c3aed, #6d28d9) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.15) !important;
}

/* Ensure it looks the same in both light and dark themes */
body.light-theme .primary-button.glow-effect,
body.dark-theme .primary-button.glow-effect {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.1) !important;
    position: relative !important;
    z-index: 20 !important;
}

body.light-theme .primary-button.glow-effect:hover,
body.dark-theme .primary-button.glow-effect:hover {
    background: linear-gradient(135deg, #7c3aed, #6d28d9) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.15) !important;
}

.secondary-button {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.secondary-button:hover {
    background-color: rgba(79, 70, 229, 0.1);
    transform: translateY(-2px);
}

.cta-button {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    padding: 0.7rem 1.3rem;
    text-decoration: none;
    display: inline-block;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.cta-button:hover {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

/* Progress Bar */
.progress-bar-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1200;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #8b5cf6, #a78bfa, #8b5cf6);
    width: 0%;
    transition: width 0.3s ease;
    position: relative;
    overflow: hidden;
}

.progress-bar::before,
.progress-bar::after {
    display: none !important;
}

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

/* ===========================================
   HEADER & NAVIGATION - MAIN NAVIGATION BAR
   =========================================== */

/* Main header container with dark background */
header {
    position: relative;
    background-color: var(--dark-bg);
    color: white;
    overflow: hidden;
}

/* Header gradient overlay for visual depth */
header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--dark-bg));
    z-index: 1;
}

/* ===========================================
   NAVBAR CONTAINER
   =========================================== */

/* Fixed navbar with backdrop and border */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 70px;
    padding: 1rem 0;
    background-color: #111827;
}

/* Navbar container with flex layout */
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 2rem;
}

/* ===========================================
   LOGO SECTION
   =========================================== */

/* Company logo container */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

/* Logo image styling */
.logo-img {
    height: 42px;
    filter: none;
    transform-origin: center center;
}

/* ===========================================
   NAVIGATION LINKS
   =========================================== */

/* Main navigation links container */
.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    max-width: 600px;
    margin: 0 auto;
}

/* ===========================================
   HEADER RIGHT SECTION - CONTROLS
   =========================================== */

/* Right side controls container (language, theme, CTA) */
.header-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-shrink: 0;
    justify-content: flex-end;
    min-width: 200px;
}

/* ===========================================
   HAMBURGER MENU - MOBILE NAVIGATION
   =========================================== */

/* Mobile hamburger menu button */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 101;
    width: 30px;
    height: 25px;
    justify-content: space-between;
}

/* Hamburger menu lines */
.hamburger span {
    width: 100%;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Universal Company Dropdown - Applied to all pages */
.company-dropdown {
    position: relative;
}

.company-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    padding: 0.7rem 1.2rem;
    position: relative;
    transition: all 0.2s ease;
    border-radius: 6px;
    background: transparent;
    border: 1px solid transparent;
    letter-spacing: -0.01em;
    font-family: 'Inter', 'Inter Fallback', sans-serif;
}

.company-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.2s ease;
    color: #FFFFFF;
}

.dropdown-arrow::after {
    content: "▼";
    font-size: 0.6rem;
}

.company-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.company-dropdown-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: -120px;
    background: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    width: 420px;
    min-height: 200px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10000;
}

.company-dropdown:hover .company-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.company-dropdown-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.company-dropdown-menu a {
    display: flex;
    align-items: flex-start;
    padding: 1.25rem 0;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.2s ease;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-direction: column;
    gap: 0.5rem;
}

.company-dropdown-menu a:last-child {
    border-bottom: none;
}

.company-dropdown-menu a .menu-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}

.company-dropdown-menu a .menu-subtitle {
    font-size: 0.8rem;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.4;
    max-width: 320px;
}

.company-dropdown-menu a:hover {
    color: white;
    padding-left: 1rem;
    background: rgba(74, 222, 128, 0.05);
    border-radius: 12px;
    margin: 0 -1rem;
    padding-right: 1rem;
}

.company-dropdown-menu a:hover .menu-title {
    color: var(--secondary-color);
}

.company-dropdown-menu a:hover .menu-subtitle {
    color: #FFFFFF;
}

/* Remove the circle indicator */
.company-dropdown-menu a::before {
    display: none;
}

/* Remove the underline effect for ConnexAI style */
.company-toggle::after {
    display: none;
}

/* Hover class for company dropdown - Higher specificity to override :hover */
.company-dropdown.hover .company-dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
}

/* Hover class for language selector - Higher specificity to override :hover */
.language-selector.hover .language-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
}

/* Platform Dropdown Styles */
.platform-dropdown {
    position: relative;
}

.platform-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #FFFFFF;
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    background: transparent;
}

.platform-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.platform-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.platform-dropdown-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: -300px;
    background: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 1.5rem;
    width: 600px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10000;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 1fr);
    gap: 1rem;
}

/* Ensure Services dropdown links are clickable and visible like other menus */
.platform-dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.platform-dropdown-menu a:last-child { border-bottom: none; }
.platform-dropdown-menu a:hover {
    background: rgba(74, 222, 128, 0.05);
    border-radius: 8px;
    margin: 0 -0.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.platform-dropdown:hover .platform-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.platform-dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 1rem;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 8px;
    gap: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.platform-dropdown-menu a:hover {
    color: white;
    background: rgba(74, 222, 128, 0.05);
    border-color: rgba(74, 222, 128, 0.2);
    transform: translateY(-2px);
}

.menu-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #ffffff;
    border-radius: 4px;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.platform-dropdown-menu a .menu-title {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    letter-spacing: -0.01em;
}

.platform-dropdown-menu a .menu-subtitle {
    font-size: 0.8rem;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.4;
}

.platform-dropdown-menu a:hover .menu-title {
    color: var(--secondary-color);
}

.platform-dropdown-menu a:hover .menu-subtitle {
    color: #FFFFFF;
}

/* Hover effects for platform dropdown icons */
.platform-dropdown-menu a:hover .menu-icon {
    transform: scale(1.1);
}

/* Estilos para elementos span.menu-item (sin enlaces) */
.platform-dropdown-menu .menu-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 8px;
    gap: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
}

.platform-dropdown-menu .menu-item:hover {
    color: white;
    background: rgba(74, 222, 128, 0.05);
    border-color: rgba(74, 222, 128, 0.2);
    transform: translateY(-2px);
}

.platform-dropdown-menu .menu-item .menu-title {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    letter-spacing: -0.01em;
}

.platform-dropdown-menu .menu-item .menu-subtitle {
    font-size: 0.8rem;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.4;
}

.platform-dropdown-menu .menu-item:hover .menu-title {
    color: var(--secondary-color);
}

.platform-dropdown-menu .menu-item:hover .menu-subtitle {
    color: #FFFFFF;
}

.platform-dropdown-menu .menu-item:hover .menu-icon {
    transform: scale(1.1);
}

/* Hover class for platform dropdown */
.platform-dropdown.hover .platform-dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
}

/* Ensure hover class takes precedence over pseudo-class */
.company-dropdown.hover .dropdown-arrow {
    transform: rotate(180deg) !important;
}

.language-selector.hover .language-toggle {
    min-width: 140px !important;
    padding: 0.5rem 1rem !important;
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.language-selector.hover .language-toggle .current-lang {
    opacity: 1 !important;
    width: auto !important;
}

/* Universal Navigation Styles - Applied to all pages - LARGER SIZES */
.nav-links ul,
.navbar .nav-links ul {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
}

.nav-links a,
.navbar .nav-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    padding: 0.7rem 1.2rem;
    position: relative;
    transition: all 0.2s ease;
    border-radius: 6px;
    background: transparent;
    border: 1px solid transparent;
    letter-spacing: -0.01em;
    font-family: 'Inter', 'Inter Fallback', sans-serif;
}

.nav-links a:hover,
.navbar .nav-links a:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.nav-links a.active,
.navbar .nav-links a.active {
    background: rgba(74, 222, 128, 0.1);
    border-color: rgba(74, 222, 128, 0.3);
    color: white;
}

/* ConnexAI style navigation - no underline effects */

/* Universal navbar styles - Applied to all pages */
.navbar {
    padding: 1rem 0 !important;
    min-height: 70px !important;
}

.navbar .container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
    gap: 2rem !important;
}

/* Index page specific - Force same navbar size as about-us page */
body:has(.hero) .navbar {
    padding: 1rem 0 !important;
    min-height: 70px !important;
}

/* Remove padding-top for pages with hero section */
body:has(.hero) header { padding-top: 0 !important; }

/* Reserve space for fixed navbar to avoid overlap */
header { padding-top: 90px; }

@media screen and (max-width: 768px) {
    header { padding-top: 100px; }
    body:has(.hero) header { padding-top: 0 !important; }
}

body:has(.hero) .navbar .container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
    gap: 2rem !important;
}

body:has(.hero) .logo-img {
    height: 42px !important;
}

/* Universal nav-links centering - Applied to all pages */
.nav-links {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 1 !important;
    max-width: 600px !important;
    margin: 0 auto !important;
}

body:has(.hero) .nav-links {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 1 !important;
    max-width: 600px !important;
    margin: 0 auto !important;
}

body:has(.hero) .nav-links ul {
    gap: 1.5rem !important;
    justify-content: center !important;
}

body:has(.hero) .nav-links a,
body:has(.hero) .company-toggle {
    font-size: 1.05rem !important;
    padding: 0.7rem 1.2rem !important;
    font-weight: 500 !important;
}

/* Universal header-right - Applied to all pages */
.header-right {
    display: flex !important;
    align-items: center !important;
    gap: 1.25rem !important;
    flex-shrink: 0 !important;
    justify-content: flex-end !important;
    min-width: 200px !important;
}

body:has(.hero) .header-right {
    gap: 1.25rem !important;
}

body:has(.hero) .language-toggle {
    min-width: 42px !important;
    height: 42px !important;
    padding: 0.5rem 0.7rem !important;
}

body:has(.hero) .language-selector:hover .language-toggle {
    min-width: 140px !important;
    padding: 0.5rem 1rem !important;
}

body:has(.hero) .cta-button {
    padding: 0.7rem 1.3rem !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
}

/* Language Selector */
.language-selector {
    position: relative;
}

/* Theme Selector */
.theme-selector {
    position: relative;
}

/* Language Toggle Switch - Neumorphic Design */
.language-toggle-switch {
    position: relative;
    cursor: pointer;
}

.toggle-track {
    position: relative;
    width: 120px;
    height: 40px;
    background: #f0f0f0;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
    box-shadow: 
        inset 4px 4px 8px rgba(0, 0, 0, 0.1),
        inset -4px -4px 8px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.toggle-slider {
    position: absolute;
    width: 32px;
    height: 32px;
    background: #f0f0f0;
    border-radius: 50%;
    left: 4px;
    top: 4px;
    transition: all 0.3s ease;
    box-shadow: 
        4px 4px 8px rgba(0, 0, 0, 0.2),
        -2px -2px 4px rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.flag-icon {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.uk-flag {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'%3E%3Crect width='60' height='30' fill='%23B22234'/%3E%3Crect width='60' height='2.3' fill='%23ffffff'/%3E%3Crect y='4.6' width='60' height='2.3' fill='%23ffffff'/%3E%3Crect y='9.2' width='60' height='2.3' fill='%23ffffff'/%3E%3Crect y='13.8' width='60' height='2.3' fill='%23ffffff'/%3E%3Crect y='18.4' width='60' height='2.3' fill='%23ffffff'/%3E%3Crect y='23' width='60' height='2.3' fill='%23ffffff'/%3E%3Crect y='27.6' width='60' height='2.3' fill='%23ffffff'/%3E%3Crect width='24' height='16.1' fill='%23003369'/%3E%3C/svg%3E");
}

.es-flag {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'%3E%3Crect width='60' height='10' fill='%23C60B1D'/%3E%3Crect y='10' width='60' height='10' fill='%23FFC40C'/%3E%3Crect y='20' width='60' height='10' fill='%23C60B1D'/%3E%3C/svg%3E");
}

.lang-text {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
    z-index: 1;
    position: relative;
}

.en-text {
    color: #333;
}

.es-text {
    color: #999;
}

/* Active state - English selected */
.language-toggle-switch.active-en .toggle-slider {
    left: 4px;
}

.language-toggle-switch.active-en .en-text {
    color: #333;
}

.language-toggle-switch.active-en .es-text {
    color: #999;
}

/* Active state - Spanish selected */
.language-toggle-switch.active-es .toggle-slider {
    left: 84px;
}

.language-toggle-switch.active-es .en-text {
    color: #999;
}

.language-toggle-switch.active-es .es-text {
    color: #333;
}

.language-toggle-switch.active-es .flag-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'%3E%3Crect width='60' height='10' fill='%23C60B1D'/%3E%3Crect y='10' width='60' height='10' fill='%23FFC40C'/%3E%3Crect y='20' width='60' height='10' fill='%23C60B1D'/%3E%3C/svg%3E");
}

/* Hover effects */
.language-toggle-switch:hover .toggle-track {
    box-shadow: 
        inset 2px 2px 4px rgba(0, 0, 0, 0.1),
        inset -2px -2px 4px rgba(255, 255, 255, 0.8);
}

.language-toggle-switch:hover .toggle-slider {
    box-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.2),
        -1px -1px 2px rgba(255, 255, 255, 0.8);
}

/* Theme Toggle Switch Styles */
.theme-toggle-switch {
    position: relative;
    cursor: pointer;
    pointer-events: auto;
    z-index: 10;
}

.theme-toggle-switch .toggle-track {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 
        inset 4px 4px 8px rgba(0, 0, 0, 0.1),
        inset -4px -4px 8px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    overflow: hidden;
    pointer-events: auto;
    cursor: pointer;
}

.theme-toggle-switch.expanded .toggle-track {
    width: 120px;
    justify-content: space-between;
    padding: 0 8px;
}

.theme-toggle-switch .toggle-slider {
    position: absolute;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    left: 4px;
    top: 4px;
    transition: all 0.3s ease;
    box-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.2),
        -1px -1px 2px rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.theme-toggle-switch:not(.expanded) .toggle-slider {
    left: 4px;
    top: 4px;
    right: auto;
    margin: 0;
}

.theme-toggle-switch:not(.expanded).active-night .toggle-slider {
    left: 4px;
    top: 4px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 
        0 2px 8px rgba(30, 64, 175, 0.4),
        2px 2px 4px rgba(0, 0, 0, 0.1),
        -1px -1px 2px rgba(255, 255, 255, 0.8);
}

.theme-toggle-switch:not(.expanded).active-day .toggle-slider {
    left: 4px;
    top: 4px;
    background: linear-gradient(135deg, #fde047, #facc15);
    box-shadow: 
        0 2px 8px rgba(251, 191, 36, 0.4),
        2px 2px 4px rgba(0, 0, 0, 0.1),
        -1px -1px 2px rgba(255, 255, 255, 0.8);
}

.theme-toggle-switch:not(.expanded).active-day .toggle-track {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    box-shadow: 
        0 4px 15px rgba(251, 191, 36, 0.3),
        inset 2px 2px 4px rgba(0, 0, 0, 0.1),
        inset -2px -2px 4px rgba(255, 255, 255, 0.2);
}

.theme-toggle-switch:not(.expanded).active-night .toggle-track {
    background: #1e40af;
    box-shadow: 
        0 4px 15px rgba(30, 64, 175, 0.3),
        inset 2px 2px 4px rgba(0, 0, 0, 0.1),
        inset -2px -2px 4px rgba(255, 255, 255, 0.1);
}

.theme-toggle-switch .theme-icon {
    font-size: 16px;
    line-height: 1;
}

/* Theme Icon Images */
.theme-toggle-switch .theme-icon-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.7));
}

.theme-toggle-switch .theme-icon-img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.9));
}

.theme-toggle-switch .theme-text {
    font-size: 12px;
    font-weight: 600;
    color: #999;
    transition: all 0.3s ease;
    z-index: 1;
    position: relative;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
}

.theme-toggle-switch.expanded .theme-text {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

/* Active state - Day mode selected */
.theme-toggle-switch.active-day .toggle-track {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    box-shadow: 
        0 4px 15px rgba(251, 191, 36, 0.3),
        inset 2px 2px 4px rgba(0, 0, 0, 0.1),
        inset -2px -2px 4px rgba(255, 255, 255, 0.2);
}

.theme-toggle-switch.active-day .toggle-slider {
    left: 4px;
    background: linear-gradient(135deg, #fde047, #facc15);
    box-shadow: 
        0 2px 8px rgba(251, 191, 36, 0.4),
        2px 2px 4px rgba(0, 0, 0, 0.1),
        -1px -1px 2px rgba(255, 255, 255, 0.8);
}

.theme-toggle-switch.active-day .day-text {
    opacity: 0;
    visibility: hidden;
}

.theme-toggle-switch.active-day .night-text {
    color: #FFFFFF;
}

/* Active state - Night mode selected */
.theme-toggle-switch.active-night .toggle-track {
    background: #1e40af;
    box-shadow: 
        0 4px 15px rgba(30, 64, 175, 0.3),
        inset 2px 2px 4px rgba(0, 0, 0, 0.1),
        inset -2px -2px 4px rgba(255, 255, 255, 0.1);
}

.theme-toggle-switch.active-night .toggle-slider {
    left: 84px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 
        0 2px 8px rgba(30, 64, 175, 0.4),
        2px 2px 4px rgba(0, 0, 0, 0.1),
        -1px -1px 2px rgba(255, 255, 255, 0.8);
}

.theme-toggle-switch.active-night .day-text {
    color: #FFFFFF;
}

.theme-toggle-switch.active-night .night-text {
    opacity: 0;
    visibility: hidden;
}

/* Hover effects */
.theme-toggle-switch:hover .toggle-track {
    box-shadow: 
        inset 2px 2px 4px rgba(0, 0, 0, 0.1),
        inset -2px -2px 4px rgba(255, 255, 255, 0.8);
}

.theme-toggle-switch:hover .toggle-slider {
    box-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.2),
        -1px -1px 2px rgba(255, 255, 255, 0.8);
}

.theme-toggle-switch.active-day:hover .toggle-track {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 
        0 6px 20px rgba(251, 191, 36, 0.5),
        inset 2px 2px 4px rgba(0, 0, 0, 0.1),
        inset -2px -2px 4px rgba(255, 255, 255, 0.2);
}

.theme-toggle-switch.active-day:hover .toggle-slider {
    background: linear-gradient(135deg, #facc15, #eab308);
    box-shadow: 
        0 4px 12px rgba(251, 191, 36, 0.6),
        2px 2px 4px rgba(0, 0, 0, 0.1),
        -1px -1px 2px rgba(255, 255, 255, 0.8);
}

.theme-toggle-switch.active-night:hover .toggle-track {
    background: #1d4ed8;
    box-shadow: 
        0 6px 20px rgba(30, 64, 175, 0.5),
        inset 2px 2px 4px rgba(0, 0, 0, 0.1),
        inset -2px -2px 4px rgba(255, 255, 255, 0.1);
}

.theme-toggle-switch.active-night:hover .toggle-slider {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    box-shadow: 
        0 4px 12px rgba(30, 64, 175, 0.6),
        2px 2px 4px rgba(0, 0, 0, 0.1),
        -1px -1px 2px rgba(255, 255, 255, 0.8);
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.7rem;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    width: auto;
    min-width: 42px;
    height: 42px;
    justify-content: center;
    overflow: hidden;
}

/* Estado inicial - solo globo y flecha */
.language-toggle .current-lang {
    opacity: 0;
    width: 0;
    white-space: nowrap;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    font-weight: 500;
    color: white;
}

.language-toggle .lang-arrow {
    opacity: 1;
    font-size: 0.7rem;
    color: white;
    transition: all 0.3s ease;
}

/* Estado hover - mostrar texto completo */
.language-selector:hover .language-toggle {
    min-width: 140px;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.language-selector:hover .language-toggle .current-lang {
    opacity: 1;
    width: auto;
}

.globe-icon {
    font-size: 1.1rem;
    color: #4ade80;
    transition: var(--transition);
    flex-shrink: 0;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(20, 20, 20, 0.9) 100%);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10000;
    padding: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.language-selector:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.8rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'Inter', 'Inter Fallback', sans-serif;
    letter-spacing: -0.01em;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.lang-option.active {
    background: rgba(76, 222, 128, 0.15);
    border-color: rgba(76, 222, 128, 0.4);
    font-weight: 500;
    box-shadow: 
        0 4px 15px rgba(76, 222, 128, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Theme Selector Styles */
.theme-toggle {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.7rem;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    width: auto;
    min-width: 42px;
    height: 42px;
    justify-content: center;
    overflow: hidden;
    position: relative;
    box-shadow: 
        0 4px 15px rgba(251, 191, 36, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.theme-toggle .current-theme {
    opacity: 0;
    width: 0;
    white-space: nowrap;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    font-weight: 500;
    color: white;
}

.theme-arrow {
    font-size: 0.7rem;
    color: #FFFFFF;
    transition: all 0.3s ease;
    transform: rotate(0deg);
    flex-shrink: 0;
}

/* Estado hover - mostrar texto completo */
.theme-selector:hover .theme-toggle {
    min-width: 140px;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    box-shadow: 
        0 6px 20px rgba(251, 191, 36, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.theme-selector:hover .theme-toggle .current-theme {
    opacity: 1;
    width: auto;
}

.theme-icon {
    font-size: 1.1rem;
    color: white;
    transition: var(--transition);
    flex-shrink: 0;
}

/* Sun rotation animation for day mode */
.day-icon {
    animation: sunRotate 4s linear infinite;
}

@keyframes sunRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.theme-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.8rem;
    background: transparent;
    backdrop-filter: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10000;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.theme-selector:hover .theme-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.theme-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: 'Inter', 'Inter Fallback', sans-serif;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    box-shadow: 
        0 4px 15px rgba(30, 64, 175, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    border: none;
    margin-bottom: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    position: relative;
    min-height: 50px;
}

.theme-option:last-child {
    margin-bottom: 0;
}

.theme-option:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 6px 20px rgba(30, 64, 175, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.theme-option.active {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    box-shadow: 
        0 4px 15px rgba(251, 191, 36, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.theme-option[data-theme="light"] {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    box-shadow: 
        0 4px 15px rgba(251, 191, 36, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.theme-option[data-theme="dark"] {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    box-shadow: 
        0 4px 15px rgba(30, 64, 175, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.lang-option .globe-icon {
    font-size: 1rem;
    color: #4ade80;
}

.lang-name {
    font-size: 0.9rem;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin-bottom: 5px;
    border-radius: 3px;
    transition: var(--transition);
}

/* ===========================================
   HERO SECTION - MAIN LANDING AREA
   =========================================== */

/* Main hero section with background and positioning */
.hero {
    text-align: center;
    padding: 8rem 0 12rem;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(26, 26, 46, 0.7) 50%, rgba(0, 0, 0, 0.7) 100%), 
                url(../Image/Background/Index_Background.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* ===========================================
   UNIFIED HERO SIZES - ALL PC PAGES EXCEPT INDEX
   =========================================== */

/* Standardize hero sizes for all PC pages except index */
.services-hero,
.about-hero,
.crm-hero,
.communication-hero,
.branding-hero,
.social-media-hero,
.editorial-hero,
.web-app-hero,
.privacy-hero,
.clients-hero,
.get-started-hero,
.ai-agent-hero,
.ai-analytics-hero,
.ai-asr-hero,
.ai-guru-hero,
.ai-knowledge-hero,
.ai-quality-hero,
.ai-voice-hero,
.omni-hero {
    padding: 8rem 0 12rem !important;
}

/* ===========================================
   HERO TITLE STYLING
   =========================================== */

/* Main hero headline */
.hero h1 {
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

/* Gradient text effect for hero title */
.hero h1 span {
    color: var(--secondary-color);
    display: block;
}

/* ===========================================
   HERO THEME VARIATIONS
   =========================================== */

/* Dark theme background adjustment for hero */
body.dark-theme .hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(26, 26, 46, 0.8) 50%, rgba(0, 0, 0, 0.8) 100%), 
                url(../Image/Background/Index_Background.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Light theme background adjustment for hero */
body:not(.dark-theme) .hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(26, 26, 46, 0.7) 50%, rgba(0, 0, 0, 0.7) 100%), 
                url(../Image/Background/Index_Background.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* ===========================================
   HERO CONTENT STYLING
   =========================================== */

/* Hero description paragraph */
.hero p {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
}

/* ===========================================
   HERO ACTION BUTTONS
   =========================================== */

/* Container for hero call-to-action buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* ===========================================
   SERVICES SECTION - MAIN SERVICES OVERVIEW
   =========================================== */

/* Main services section container */
.products {
    padding: 6rem 0;
    text-align: center;
    background-color: var(--light-bg);
}

/* ===========================================
   SERVICES SECTION HEADER
   =========================================== */

/* Services section title */
.products h2 {
    color: var(--text-color);
}

/* Services section description */
.products .section-description {
    color: var(--text-color);
}

/* ===========================================
   SERVICES THEME VARIATIONS
   =========================================== */

/* Dark theme styles for services section */
body.dark-theme .products h2 {
    color: #ffffff !important;
}

body.dark-theme .products .section-description {
    color: #8b5cf6 !important;
}

body.light-theme .products .section-description {
    color: #8b5cf6 !important;
}

/* ===========================================
   SERVICES GRID - SERVICE CARDS
   =========================================== */

/* Grid container for service cards */
.product-slider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Individual service card styling */
.product-card {
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: left;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card h3 {
    font-family: 'Inter', 'Inter Fallback', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.discover-link {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-block;
    margin-top: 1rem;
}

.discover-link:hover {
    text-decoration: underline;
}

/* ===========================================
   ABOUT SECTION - COMPANY INFORMATION
   =========================================== */

/* Main about section container */
.testimonials {
    padding: 6rem 0;
    text-align: center;
    position: relative;
    background: #f9fafb;
}

/* ===========================================
   ABOUT SECTION HEADER
   =========================================== */

/* About section title */
.testimonials h2 {
    color: var(--text-color);
}

/* About section description */
.testimonials .section-description {
    color: var(--light-text);
}

/* Light theme description color */
body.light-theme .testimonials .section-description {
    color: #8b5cf6 !important;
}

/* ===========================================
   PURPLE OVERLAY - VISUAL DEPTH
   =========================================== */

/* Purple overlay for visual depth effect */
.purple-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 92, 246, 0.05);
    z-index: 2;
    pointer-events: none;
    opacity: 0;
}

/* ===========================================
   ABOUT THEME VARIATIONS
   =========================================== */

/* Dark theme styles for about section */
body.dark-theme .testimonials {
    background: #111827;
    padding: 8rem 0;
    overflow: hidden;
}

/* Dark theme purple overlay */
body.dark-theme .purple-overlay {
    opacity: 1;
}

/* Remove overlay effect for testimonials section */
.testimonials .purple-overlay {
    display: none;
}

/* Dark theme about section title */
body.dark-theme .testimonials h2 {
    color: #ffffff !important;
    position: relative;
    z-index: 15;
}

/* Dark theme about section description */
body.dark-theme .testimonials .section-description {
    color: #8b5cf6 !important;
    position: relative;
    z-index: 15;
}

/* Dark theme testimonial slider */
body.dark-theme .testimonial-slider {
    position: relative;
    z-index: 15;
}

/* ===========================================
   TESTIMONIAL CARDS - COMPANY VALUES
   =========================================== */

/* Dark theme testimonial card styling */
body.dark-theme .testimonial-card {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
}

/* Testimonial card hover effects */
.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.3);
    background: rgba(139, 92, 246, 0.1);
}

/* Dark theme testimonial card hover */
body.dark-theme .testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(147, 112, 219, 0.3) !important;
}

/* ===========================================
   TESTIMONIAL CONTENT STYLING
   =========================================== */

/* Dark theme testimonial quote */
body.dark-theme .testimonial-quote {
    color: #ffffff !important;
}

/* Dark theme testimonial author title */
body.dark-theme .testimonial-author h4 {
    color: #8b5cf6 !important;
}

/* Dark theme testimonial author description */
body.dark-theme .testimonial-author p {
    color: #888888 !important;
}

.testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.testimonial-card {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: var(--radius);
    max-width: 350px;
    text-align: left;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-quote {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author h4 {
    margin-bottom: 0.2rem;
}

.testimonial-author p {
    color: var(--light-text);
    margin-bottom: 0;
}

.testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.testimonial-card {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: var(--radius);
    max-width: 350px;
    text-align: left;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-quote {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author h4 {
    margin-bottom: 0.2rem;
}

.testimonial-author p {
    color: var(--light-text);
    margin-bottom: 0;
}

/* ===========================================
   PORTFOLIO SECTION - PERFORMANCE METRICS
   =========================================== */

/* Main portfolio section container */
.performance {
    padding: 6rem 0;
    text-align: center;
    background-color: var(--light-bg);
}

/* ===========================================
   PORTFOLIO SECTION HEADER
   =========================================== */

/* Portfolio section title */
.performance h2 {
    color: var(--text-color);
}

/* Portfolio section description */
.performance .section-description {
    color: var(--text-color);
}

/* Light theme description color */
body.light-theme .performance .section-description {
    color: #8b5cf6 !important;
}

/* ===========================================
   PORTFOLIO THEME VARIATIONS
   =========================================== */

/* Dark theme styles for portfolio section */
body.dark-theme .performance h2 {
    color: #ffffff !important;
}

body.dark-theme .performance .section-description {
    color: #8b5cf6 !important;
}

/* ===========================================
   STATS CONTAINER - PERFORMANCE METRICS
   =========================================== */

/* Grid container for performance statistics */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

/* ===========================================
   STAT CARDS - INDIVIDUAL METRICS
   =========================================== */

/* Individual stat card styling */
.stat-card {
    padding: 1.5rem;
    background-color: var(--background-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* Stat card number styling */
.stat-card h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

/* ===========================================
   STAT CARDS THEME VARIATIONS
   =========================================== */

/* Dark theme styles for stat cards */
body.dark-theme .stat-card {
    background-color: #ffffff !important;
    color: #1f2937 !important;
}

body.dark-theme .stat-card h3 {
    color: #8b5cf6 !important;
}

body.dark-theme .stat-card p {
    color: #1f2937 !important;
}

/* ===========================================
   WHY CHOOSE US SECTION - AI SERVICES SHOWCASE
   =========================================== */

/* Main why choose us section container */
.ai-suite, .why-choose-us {
    padding: 6rem 0;
    text-align: center;
    position: relative;
    background: #f9fafb;
}

/* ===========================================
   PURPLE OVERLAY - VISUAL DEPTH
   =========================================== */

/* Purple overlay for visual depth effect */
.why-choose-us .purple-overlay {
    display: none;
}

/* ===========================================
   WHY CHOOSE US THEME VARIATIONS
   =========================================== */

/* Dark theme styles for why choose us section */
body.dark-theme .why-choose-us {
    background: #111827;
    padding: 8rem 0;
    overflow: hidden;
}

/* Dark theme purple overlay */
body.dark-theme .why-choose-us .purple-overlay {
    display: none;
}

/* ===========================================
   WHY CHOOSE US HEADER STYLING
   =========================================== */

/* Dark theme why choose us title */
body.dark-theme .why-choose-us h2 {
    color: #ffffff !important;
    position: relative;
    z-index: 15;
}

/* Dark theme why choose us description */
body.dark-theme .why-choose-us .section-description {
    color: #8b5cf6 !important;
    position: relative;
    z-index: 15;
}

body.dark-theme .why-choose-us .section-badge {
    color: #ffffff !important;
    position: relative;
    z-index: 15;
}

body.dark-theme .why-choose-us .ai-services {
    position: relative;
    z-index: 15;
}

body.dark-theme .service-card {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
}

body.dark-theme .service-card:hover {
    background: rgba(139, 92, 246, 0.1) !important;
    border-color: rgba(139, 92, 246, 0.3) !important;
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.2) !important;
}

body.dark-theme .service-card h3 {
    color: #8b5cf6 !important;
}

body.light-theme .service-card h3 {
    color: #8b5cf6 !important;
}

body.dark-theme .service-card p {
    color: #6b7280 !important;
}

body.light-theme .service-card p {
    color: #6b7280 !important;
}

body.dark-theme .product-card h3 {
    color: #8b5cf6 !important;
}

body.light-theme .product-card h3 {
    color: #8b5cf6 !important;
}

body.dark-theme .feature-content h3 {
    color: #8b5cf6 !important;
}

body.light-theme .feature-content h3 {
    color: #8b5cf6 !important;
}

body.dark-theme .feature-content p {
    color: #6b7280 !important;
}

body.light-theme .feature-content p {
    color: #6b7280 !important;
}

/* Ensure all card descriptions have the correct color */
body.dark-theme .service-card p,
body.dark-theme .product-card p,
body.dark-theme .feature-card p,
body.dark-theme .feature-content p,
body.dark-theme .stat-card p,
body.dark-theme .industry-card p,
body.dark-theme .testimonial-card p {
    color: #6b7280 !important;
}

body.light-theme .service-card p,
body.light-theme .product-card p,
body.light-theme .feature-card p,
body.light-theme .feature-content p,
body.light-theme .stat-card p,
body.light-theme .industry-card p,
body.light-theme .testimonial-card p {
    color: #6b7280 !important;
}

/* Ensure all h4 elements have correct colors */
body.dark-theme .testimonial-author h4,
body.dark-theme .tab-text h4,
body.dark-theme .footer-section h4,
body.dark-theme .chat-info h4 {
    color: #8b5cf6 !important;
}

body.light-theme .testimonial-author h4,
body.light-theme .tab-text h4,
body.light-theme .footer-section h4,
body.light-theme .chat-info h4 {
    color: #1f2937 !important;
}

/* Force h4 colors with higher specificity */
body.dark-theme h4,
body.dark-theme .testimonial-author h4,
body.dark-theme .tab-text h4,
body.dark-theme .footer-section h4,
body.dark-theme .chat-info h4,
body.dark-theme .footer-section:nth-child(2) h4,
body.dark-theme .footer-section:nth-child(4) h4 {
    color: #8b5cf6 !important;
}

body.light-theme h4,
body.light-theme .testimonial-author h4,
body.light-theme .tab-text h4,
body.light-theme .footer-section h4,
body.light-theme .chat-info h4,
body.light-theme .footer-section:nth-child(2) h4,
body.light-theme .footer-section:nth-child(4) h4 {
    color: #FFFFFF !important;
}

body.dark-theme h4 {
    color: #8b5cf6 !important;
}

body.light-theme h4 {
    color: #1f2937 !important;
}

/* Ensure all card titles in dark mode have the correct color */
body.dark-theme .card h3,
body.dark-theme .service-card h3,
body.dark-theme .product-card h3,
body.dark-theme .feature-card h3,
body.dark-theme .feature-content h3,
body.dark-theme .stat-card h3,
body.dark-theme .industry-card h3,
body.dark-theme .testimonial-card h3 {
    color: #8b5cf6 !important;
}

/* Ensure all card titles in light mode have the correct color */
body.light-theme .card h3,
body.light-theme .service-card h3,
body.light-theme .product-card h3,
body.light-theme .feature-card h3,
body.light-theme .feature-content h3,
body.light-theme .stat-card h3,
body.light-theme .industry-card h3,
body.light-theme .testimonial-card h3 {
    color: #8b5cf6 !important;
}

body.dark-theme .why-choose-us .service-detail {
    color: #8b5cf6 !important;
}

/* Dark theme button styling for View Portfolio - same as Start Your Project */
body.dark-theme .secondary-button {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3) !important;
    position: relative;
    z-index: 15;
}

body.dark-theme .secondary-button:hover {
    background: linear-gradient(135deg, #7c3aed, #6d28d9) !important;
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4) !important;
    transform: translateY(-2px);
}

.ai-services {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(106, 13, 173, 0.3);
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%, 
        rgba(255, 255, 255, 0) 100%);
    animation: badge-shine 3s infinite;
}

.glow-effect {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(106, 13, 173, 0.5);
}

.glow-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    mix-blend-mode: screen;
    transform: translate(-30%, -30%);
}

.glow-effect:hover::after {
    opacity: 1;
}

.service-card {
    text-align: left;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: var(--radius);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.3);
    background: rgba(139, 92, 246, 0.1);
}

.service-card h3 {
    font-family: 'Inter', 'Inter Fallback', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-top: 60px;
    position: relative;
    transition: all 0.3s ease;
}

.service-card p {
    font-family: 'Inter', 'Inter Fallback', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Progress ring border effect for service cards */
.service-card.progress-ring::before,
.process-step.progress-ring::before,
.faq-item.progress-ring::before,
.phase-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background: none !important; /* remove gray base ring */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.service-card.progress-ring::after,
.process-step.progress-ring::after,
.faq-item.progress-ring::after,
.phase-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */
.benefits-section .benefit-item.progress-ring {
    --track: #1a1a1a; /* dark gray border for CRM benefits cards */
}

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */
.process-section .benefit-item.progress-ring {
    --track: #1a1a1a; /* dark gray border for CRM process cards */
}

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */

/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */

/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */

/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for editorial publication types cards */

/* Light theme: white border for editorial publication cards */
body.light-theme .publication-types-section .publication-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each editorial publication card */
.publication-types-section .publication-card.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Magazines & Newsletters - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.publication-types-section .publication-card.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Books & E-books - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.publication-types-section .publication-card.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Reports & Whitepapers - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.publication-types-section .publication-card.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Brochures & Catalogs - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring pseudo-elements for editorial publication cards */
.publication-types-section .publication-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.publication-types-section .publication-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0;
}

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Second bar going in opposite direction for editorial publication cards with different color */
.publication-types-section .publication-card.progress-ring::before {
    background:
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            color-mix(in oklab, var(--accent-2, #00E5FF) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent-2, #00E5FF) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent-2, #00E5FF) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    animation: pr-scan-reverse 2.8s linear infinite;
}

/* Single bar progress ring for CRM service cards */

/* Light theme: white border for CRM service cards */
body.light-theme .services-overview .crm-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM service card */
.services-overview .crm-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Custom CRM Development - Red */
.services-overview .crm-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* CRM Integration - Teal */
.services-overview .crm-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Data Analytics & Reporting - Yellow */
.services-overview .crm-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Mobile CRM Solutions - Purple */
.services-overview .crm-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Security & Compliance - Cyan */
.services-overview .crm-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Training & Support - Pink */

/* Single bar progress ring pseudo-elements for CRM service cards */
.services-overview .crm-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.services-overview .crm-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM feature cards */

/* Light theme: white border for CRM feature cards */
body.light-theme .features-section .feature-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM feature card */
.features-section .feature-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Contact Management - Red */
.features-section .feature-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Sales Pipeline - Teal */
.features-section .feature-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Email Marketing - Yellow */
.features-section .feature-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Communication Hub - Purple */
.features-section .feature-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Task Management - Cyan */
.features-section .feature-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Automated Notifications - Pink */

/* Single bar progress ring pseudo-elements for CRM feature cards */
.features-section .feature-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.features-section .feature-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM industry cards */

/* Light theme: white border for CRM industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Retail & E-commerce - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Financial Services - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real Estate - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Education - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Manufacturing - Pink */

/* Single bar progress ring pseudo-elements for CRM industry cards */
.industries-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.industries-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for editorial benefits and process cards */

/* Light theme: white border for editorial benefit and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each editorial benefit card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Strategic Content - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Design Excellence - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Fast Turnaround - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Attention to Detail - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each editorial process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Content Strategy - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Writing & Editing - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Design & Layout - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Review & Finalization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring pseudo-elements for editorial benefit and process cards */
.benefits-section .benefit-item.progress-ring::before,
.process-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.benefits-section .benefit-item.progress-ring::after,
.process-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Second bar going in opposite direction for editorial benefit and process cards with different color */
.benefits-section .benefit-item.progress-ring::before,
.process-section .benefit-item.progress-ring::before {
    background:
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            color-mix(in oklab, var(--accent-2, #00E5FF) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent-2, #00E5FF) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent-2, #00E5FF) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    animation: pr-scan-reverse 2.8s linear infinite;
}

/* Single bar progress ring for CRM service cards */

/* Light theme: white border for CRM service cards */
body.light-theme .services-overview .crm-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM service card */
.services-overview .crm-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Custom CRM Development - Red */
.services-overview .crm-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* CRM Integration - Teal */
.services-overview .crm-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Data Analytics & Reporting - Yellow */
.services-overview .crm-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Mobile CRM Solutions - Purple */
.services-overview .crm-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Security & Compliance - Cyan */
.services-overview .crm-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Training & Support - Pink */

/* Single bar progress ring pseudo-elements for CRM service cards */
.services-overview .crm-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.services-overview .crm-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM feature cards */

/* Light theme: white border for CRM feature cards */
body.light-theme .features-section .feature-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM feature card */
.features-section .feature-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Contact Management - Red */
.features-section .feature-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Sales Pipeline - Teal */
.features-section .feature-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Email Marketing - Yellow */
.features-section .feature-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Communication Hub - Purple */
.features-section .feature-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Task Management - Cyan */
.features-section .feature-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Automated Notifications - Pink */

/* Single bar progress ring pseudo-elements for CRM feature cards */
.features-section .feature-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.features-section .feature-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM industry cards */

/* Light theme: white border for CRM industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Retail & E-commerce - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Financial Services - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real Estate - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Education - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Manufacturing - Pink */

/* Single bar progress ring pseudo-elements for CRM industry cards */
.industries-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.industries-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

.service-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.2);
    background: #8b5cf6;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.5);
}

.ai-agent-icon::before,
.ai-voice-icon::before,
.ai-analytics-icon::before,
.ai-guru-icon::before,
.ai-quality-icon::before,
.ai-knowledge-icon::before,
.ai-asr-icon::before,
.omni-icon::before,
.ai-asr-icon::before {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease;
    filter: brightness(0) saturate(100%) invert(19%) sepia(51%) saturate(4532%) hue-rotate(266deg) brightness(84%) contrast(118%);
}

.service-card:hover .service-icon::before {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

.ai-agent-icon::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E"); }
.ai-voice-icon::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 9v6h4l5 5V4L7 9H3zm13.5 3c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02zM14 3.23v2.06c2.89.86 5 3.54 5 6.71s-2.11 5.85-5 6.71v2.06c4.01-.91 7-4.49 7-8.77s-2.99-7.86-7-8.77z'/%3E%3C/svg%3E"); }
.ai-analytics-icon::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M16 6l2.29 2.29-4.88 4.88-4-4L2 16.59 3.41 18l6-6 4 4 6.3-6.29L22 12V6z'/%3E%3C/svg%3E"); }
.ai-guru-icon::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E"); }
.ai-quality-icon::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E"); }
.ai-knowledge-icon::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 14H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z'/%3E%3C/svg%3E"); }
.ai-asr-icon::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 15c1.66 0 3-1.34 3-3V6c0-1.66-1.34-3-3-3S9 4.34 9 6v6c0 1.66 1.34 3 3 3zm-1-9c0-.55.45-1 1-1s1 .45 1 1v6c0 .55-.45 1-1 1s-1-.45-1-1V6zm6 6c0 2.76-2.24 5-5 5s-5-2.24-5-5H5c0 3.53 2.61 6.43 6 6.92V21h2v-2.08c3.39-.49 6-3.39 6-6.92h-2z'/%3E%3C/svg%3E"); }
.omni-icon::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.94-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z'/%3E%3C/svg%3E"); }
.omni-icon::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.94-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z'/%3E%3C/svg%3E"); }

.service-hover-info {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.service-card:hover .service-hover-info {
    opacity: 1;
    transform: translateY(0);
}

.service-detail {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    font-size: 0.8rem;
    padding: 3px 8px;
    border-radius: 12px;
    display: inline-block;
}

/* AI Brain Visualization */
.ai-brain-visualization {
    width: 300px;
    height: 300px;
    margin: 50px auto 0;
    position: relative;
    opacity: 0.8;
}

/* Agents Section */
.agents-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        rgba(106, 13, 173, 0.05) 0%, 
        rgba(147, 112, 219, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.agents-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(106, 13, 173, 0.15) 0%, rgba(106, 13, 173, 0) 70%);
    top: -150px;
    right: -150px;
    z-index: 0;
}

.agents-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(147, 112, 219, 0.12) 0%, rgba(147, 112, 219, 0) 70%);
    bottom: -100px;
    left: -100px;
    z-index: 0;
}

.agents-section .container {
    position: relative;
    z-index: 1;
}

.agents-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0 3rem;
    position: relative;
    border-bottom: 1px solid rgba(106, 13, 173, 0.1);
    padding-bottom: 1rem;
}

.agent-tab {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.agent-tab:hover {
    color: var(--primary-color);
    opacity: 0.9;
}

.agent-tab.active {
    color: var(--primary-color);
    opacity: 1;
}

.tab-indicator {
    position: absolute;
    bottom: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    border-radius: 0;
}

.agents-container {
    display: none;
    flex-direction: column;
    gap: 3rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.agents-container.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.6s ease forwards;
}

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

.agent-card {
    display: grid;
    grid-template-columns: 80px 1fr 180px;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(106, 13, 173, 0.1);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(106, 13, 173, 0.05);
}

.agent-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.agent-card:hover {
    box-shadow: 0 20px 40px rgba(106, 13, 173, 0.2);
    transform: translateY(-5px);
}

.agent-card:hover::before {
    transform: scaleX(1);
}

.agent-icon {
    position: relative;
    width: 80px;
    height: 80px;
}

.agent-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.agent-avatar::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="white"><path d="M12 2a10 10 0 110 20 10 10 0 010-20zM8.5 8a1.5 1.5 0 100 3 1.5 1.5 0 000-3zm7 0a1.5 1.5 0 100 3 1.5 1.5 0 000-3zM12 18c2.28 0 4.22-1.66 5-4H7c.78 2.34 2.72 4 5 4z"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40px;
    opacity: 0.8;
}

.agent-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary-color);
    filter: blur(15px);
    opacity: 0.1;
    z-index: 1;
}

@keyframes pulse-glow {
    0% {
        transform: scale(0.9);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
    100% {
        transform: scale(0.9);
        opacity: 0.3;
    }
}

.agent-content {
    display: flex;
    flex-direction: column;
}

.agent-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.agent-mission {
    margin-bottom: 1.5rem;
}

.mission-label, .capabilities-label {
    display: inline-block;
    background: rgba(106, 13, 173, 0.1);
    color: var(--primary-color);
    padding: 0.2rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.agent-capabilities {
    margin-bottom: 1.5rem;
}

.capability-list {
    padding-left: 1.2rem;
}

.capability-list li {
    margin-bottom: 0.3rem;
    position: relative;
}

.capability-list li::before {
    content: '?';
    color: var(--secondary-color);
    position: absolute;
    left: -1.2rem;
    font-weight: bold;
}

.agent-cta {
    display: inline-flex;
    align-items: center;
    background: var(--primary-color);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 0.9rem;
    align-self: flex-start;
    transition: all 0.3s ease;
    margin-top: auto;
}

.agent-cta:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: white;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    70% {
        transform: scale(3);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.agent-visual {
    position: relative;
    width: 180px;
    height: 180px;
    align-self: center;
}

.agent-animation {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

/* Agent-specific animations */
.agent-animation::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
}

.agent-animation.outbound::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%236a0dad' d='M50 10A40 40 0 1 0 90 50 40 40 0 0 0 50 10zm0 75a35 35 0 1 1 35-35 35 35 0 0 1-35 35z'/%3E%3Cpath fill='%236a0dad' d='M50 25a25 25 0 1 0 25 25 25 25 0 0 0-25-25zm0 45a20 20 0 1 1 20-20 20 20 0 0 1-20 20z'/%3E%3Cpath fill='%236a0dad' d='M50 40a10 10 0 1 0 10 10 10 10 0 0 0-10-10zm0 15a5 5 0 1 1 5-5 5 5 0 0 1-5 5z'/%3E%3C/svg%3E");
    animation: pulse-outbound 3s infinite;
}

.agent-animation.inbound::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%236a0dad' d='M80 30H20a5 5 0 0 0-5 5v30a5 5 0 0 0 5 5h60a5 5 0 0 0 5-5V35a5 5 0 0 0-5-5zm0 35H20V35h60v30z'/%3E%3Cpath fill='%236a0dad' d='M35 45h30v10H35z'/%3E%3Ccircle fill='%236a0dad' cx='25' cy='50' r='5'/%3E%3Ccircle fill='%236a0dad' cx='75' cy='50' r='5'/%3E%3C/svg%3E");
    animation: float-inbound 3s infinite ease-in-out;
}

.agent-animation.ecommerce::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%236a0dad' d='M35 75h40a5 5 0 0 0 5-5V35a5 5 0 0 0-5-5H35a5 5 0 0 0-5 5v35a5 5 0 0 0 5 5zm0-40h40v35H35V35z'/%3E%3Cpath fill='%236a0dad' d='M25 25h50v5H25zM20 15h60v5H20z'/%3E%3Cpath fill='%236a0dad' d='M45 45h20v5H45zm0 10h20v5H45z'/%3E%3C/svg%3E");
    animation: zoom-ecommerce 4s infinite ease-in-out;
}

.agent-animation.recruitment::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%236a0dad' d='M65 25H35a5 5 0 0 0-5 5v40a5 5 0 0 0 5 5h30a5 5 0 0 0 5-5V30a5 5 0 0 0-5-5zm0 45H35V30h30v40z'/%3E%3Ccircle fill='%236a0dad' cx='50' cy='40' r='10'/%3E%3Cpath fill='%236a0dad' d='M40 55h20v10H40z'/%3E%3C/svg%3E");
    animation: float-recruitment 3s infinite ease-in-out;
}

.agent-animation.financial::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%236a0dad' d='M75 30H25a5 5 0 0 0-5 5v30a5 5 0 0 0 5 5h50a5 5 0 0 0 5-5V35a5 5 0 0 0-5-5zm0 35H25V35h50v30z'/%3E%3Ccircle fill='%236a0dad' cx='50' cy='50' r='15'/%3E%3Cpath fill='%23ffffff' d='M47 43h6v14h-6z'/%3E%3Cpath fill='%23ffffff' d='M43 47h14v6H43z'/%3E%3C/svg%3E");
    animation: rotate-financial 5s infinite linear;
}

.agent-animation.project::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%236a0dad' d='M70 25H30a5 5 0 0 0-5 5v40a5 5 0 0 0 5 5h40a5 5 0 0 0 5-5V30a5 5 0 0 0-5-5zm0 45H30V30h40v40z'/%3E%3Cpath fill='%236a0dad' d='M40 40h20v5H40zm0 10h30v5H40zm0 10h25v5H40z'/%3E%3C/svg%3E");
    animation: pulse-project 3s infinite;
}

.agent-animation.content::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%236a0dad' d='M75 30H25a5 5 0 0 0-5 5v30a5 5 0 0 0 5 5h50a5 5 0 0 0 5-5V35a5 5 0 0 0-5-5zm0 35H25V35h50v30z'/%3E%3Cpath fill='%236a0dad' d='M35 45h30v2H35zm0 6h30v2H35zm0 6h20v2H35z'/%3E%3C/svg%3E");
    animation: type-content 3s infinite;
}

.agent-animation.social::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle fill='%236a0dad' cx='30' cy='35' r='10'/%3E%3Ccircle fill='%236a0dad' cx='70' cy='35' r='10'/%3E%3Ccircle fill='%236a0dad' cx='50' cy='70' r='10'/%3E%3Cpath fill='%236a0dad' d='M30 35l20 35M70 35l-20 35M30 35h40'/%3E%3C/svg%3E");
    animation: connect-social 5s infinite;
}

.agent-animation.support::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%236a0dad' d='M50 25a25 25 0 1 0 25 25 25 25 0 0 0-25-25zm0 45a20 20 0 1 1 20-20 20 20 0 0 1-20 20z'/%3E%3Cpath fill='%236a0dad' d='M50 40a3 3 0 0 0-3 3v10a3 3 0 0 0 6 0V43a3 3 0 0 0-3-3zm0 20a3 3 0 1 0 3 3 3 3 0 0 0-3-3z'/%3E%3C/svg%3E");
    animation: pulse-support 3s infinite;
}

.agent-animation.intelligence::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%236a0dad' d='M50 25a25 25 0 1 0 25 25 25 25 0 0 0-25-25zm0 45a20 20 0 1 1 20-20 20 20 0 0 1-20 20z'/%3E%3Cpath fill='%236a0dad' d='M42 50l5 5 10-10'/%3E%3C/svg%3E");
    animation: search-intelligence 4s infinite;
}

@keyframes pulse-outbound {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

@keyframes float-inbound {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes zoom-ecommerce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1) rotate(5deg); }
}

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

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

@keyframes pulse-project {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.05); opacity: 1; }
}

@keyframes type-content {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@keyframes connect-social {
    0%, 100% { transform: scale(1) rotate(0); }
    50% { transform: scale(1.1) rotate(10deg); }
}

@keyframes pulse-support {
    0%, 100% { transform: scale(1); opacity: 0.7; box-shadow: 0 0 0 rgba(106, 13, 173, 0); }
    50% { transform: scale(1.05); opacity: 1; box-shadow: 0 0 20px rgba(106, 13, 173, 0.5); }
}

@keyframes search-intelligence {
    0% { transform: scale(1) rotate(0); }
    25% { transform: scale(1.1) rotate(-5deg); }
    50% { transform: scale(1) rotate(0); }
    75% { transform: scale(1.1) rotate(5deg); }
    100% { transform: scale(1) rotate(0); }
}

/* Solutions Complete Section */
.solutions-complete {
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        rgba(106, 13, 173, 0.03) 0%, 
        rgba(147, 112, 219, 0.07) 100%);
    position: relative;
}

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

.solution-category {
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(106, 13, 173, 0.1);
    transition: all 0.4s ease;
    border-top: 3px solid var(--primary-color);
}

.solution-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(106, 13, 173, 0.2);
}

.solution-category h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.solution-category h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.solution-list {
    list-style: none;
    padding: 0;
}

.solution-list li {
    margin-bottom: 1.2rem;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.solution-list li:hover {
    transform: translateX(5px);
}

.solution-name {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.3rem;
    display: block;
    position: relative;
    padding-left: 1.5rem;
}

.solution-name::before {
    content: '?';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.solution-list li:hover .solution-name::before {
    transform: translateX(3px);
    color: var(--primary-color);
}

.solution-description {
    font-size: 0.9rem;
    color: var(--light-text);
    padding-left: 1.5rem;
}

/* Custom Automation Section */
.custom-automation {
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        rgba(106, 13, 173, 0.1) 0%, 
        rgba(106, 13, 173, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.custom-automation .container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: center;
}

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

.custom-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.custom-feature {
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(106, 13, 173, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.custom-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    opacity: 0.7;
}

.custom-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(106, 13, 173, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: none;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Pseudo-element removed */

/* All pseudo-elements removed */

.custom-feature h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.custom-feature p {
    font-size: 0.95rem;
    color: var(--light-text);
    margin-bottom: 0;
}

.automation-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2.5rem;
    position: relative;
}

.automation-decoration {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    flex: 1;
    opacity: 0.3;
}

.automation-decoration.left {
    margin-right: 2rem;
}

.automation-decoration.right {
    margin-left: 2rem;
}

.custom-visual {
    position: relative;
}

.automation-animation {
    width: 300px;
    height: 300px;
    position: relative;
}

.automation-node {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    position: absolute;
    box-shadow: 0 0 20px rgba(106, 13, 173, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.automation-node::after {
    content: '';
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.9;
    filter: brightness(0) saturate(100%) invert(100%);
}

.automation-node.node1 {
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: float-node 3s infinite ease-in-out;
}

.automation-node.node1::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 11.75c-.69 0-1.25.56-1.25 1.25s.56 1.25 1.25 1.25 1.25-.56 1.25-1.25-.56-1.25-1.25-1.25zm6 0c-.69 0-1.25.56-1.25 1.25s.56 1.25 1.25 1.25 1.25-.56 1.25-1.25-.56-1.25-1.25-1.25zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8 0-.29.02-.58.05-.86 2.36-1.05 4.23-2.98 5.21-5.37C11.07 8.33 14.05 10 17.42 10c.78 0 1.53-.09 2.25-.26.21.71.33 1.47.33 2.26 0 4.41-3.59 8-8 8z'/%3E%3C/svg%3E");
}

.automation-node.node2 {
    bottom: 30px;
    left: 30px;
    animation: float-node 3s infinite ease-in-out 1s;
}

.automation-node.node2::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 3c1.93 0 3.5 1.57 3.5 3.5S13.93 13 12 13s-3.5-1.57-3.5-3.5S10.07 6 12 6zm7 13H5v-.23c0-.62.28-1.2.76-1.58C7.47 15.82 9.64 15 12 15s4.53.82 6.24 2.19c.48.38.76.97.76 1.58V19z'/%3E%3C/svg%3E");
}

.automation-node.node3 {
    bottom: 30px;
    right: 30px;
    animation: float-node 3s infinite ease-in-out 2s;
}

.automation-node.node3::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19.43 12.98c.04-.32.07-.64.07-.98s-.03-.66-.07-.98l2.11-1.65c.19-.15.24-.42.12-.64l-2-3.46c-.12-.22-.39-.3-.61-.22l-2.49 1c-.52-.4-1.08-.73-1.69-.98l-.38-2.65C14.46 2.18 14.25 2 14 2h-4c-.25 0-.46.18-.49.42l-.38 2.65c-.61.25-1.17.59-1.69.98l-2.49-1c-.23-.09-.49 0-.61.22l-2 3.46c-.13.22-.07.49.12.64l2.11 1.65c-.04.32-.07.65-.07.98s.03.66.07.98l-2.11 1.65c-.19.15-.24.42-.12.64l2 3.46c.12.22.39.3.61.22l2.49-1c.52.4 1.08.73 1.69.98l.38 2.65c.03.24.24.42.49.42h4c.25 0 .46-.18.49-.42l.38-2.65c.61-.25 1.17-.59 1.69-.98l2.49 1c.23.09.49 0 .61-.22l2-3.46c.12-.22.07-.49-.12-.64l-2.11-1.65zM12 15.5c-1.93 0-3.5-1.57-3.5-3.5s1.57-3.5 3.5-3.5 3.5 1.57 3.5 3.5-1.57 3.5-3.5 3.5z'/%3E%3C/svg%3E");
}

@keyframes float-node {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.automation-connection {
    position: absolute;
    height: 2px;
    background: var(--secondary-color);
    opacity: 0.6;
    transform-origin: left center;
    animation: connection-pulse 2s infinite alternate;
}

@keyframes connection-pulse {
    0% { opacity: 0.3; }
    100% { opacity: 0.8; }
}

.automation-connection.c1-2 {
    top: 60px;
    left: 60px;
    width: 120px;
    transform: rotate(45deg);
    animation-delay: 0.5s;
}

.automation-connection.c2-3 {
    bottom: 60px;
    left: 90px;
    width: 120px;
    animation-delay: 1s;
}

.automation-connection.c3-1 {
    top: 60px;
    right: 60px;
    width: 120px;
    transform: rotate(-45deg);
    animation-delay: 1.5s;
}

/* Enterprise Section */
.enterprise {
    padding: 6rem 0;
    text-align: center;
    background-color: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    text-align: left;
    padding: 2rem;
    background-color: var(--background-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.feature-card h3 {
    color: var(--primary-color);
}

/* Industries Section */
.industries {
    padding: 6rem 0;
    text-align: center;
}

.industry-cases {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.industry-card {
    text-align: left;
    padding: 2rem;
    background-color: var(--light-bg);
    border-radius: var(--radius);
    transition: var(--transition);
}

.industry-card h3 {
    color: var(--primary-color);
}

.industry-card a {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-block;
    margin-top: 1rem;
}

.industry-card a:hover {
    text-decoration: underline;
}

/* ===========================================
   CONTACT SECTION - CONTACT FORM & INFO
   =========================================== */

/* Main contact section container */
.contact {
    padding: 6rem 0;
    text-align: center;
    background-color: var(--primary-color);
    color: white;
}

/* ===========================================
   CONTACT SECTION HEADER
   =========================================== */

/* Contact section description */
.contact .section-description {
    color: #FFFFFF;
}

/* ===========================================
   CONTACT INFO CONTAINER
   =========================================== */

/* Container for contact information cards */
.contact-info {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* ===========================================
   CONTACT ITEMS - INFO CARDS
   =========================================== */

/* Individual contact information card */
.contact-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--radius);
    backdrop-filter: blur(5px);
    text-align: left;
    min-width: 300px;
}

/* Contact item title */
.contact-item h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Contact item text */
.contact-item p {
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

/* Contact item strong text */
.contact-item strong {
    color: white;
}

/* ===========================================
   FOOTER SECTION - SITE FOOTER
   =========================================== */

/* Main footer container */
footer {
    background-color: #111827;
    color: white;
    padding: 4rem 0 2rem;
}

/* ===========================================
   FOOTER CONTENT CONTAINER
   =========================================== */

/* Main footer content wrapper */
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* ===========================================
   FOOTER BRANDING SECTION
   =========================================== */

/* Company branding section in footer */
.footer-branding {
    flex: 1 1 300px;
}

/* ===========================================
   FOOTER LINKS CONTAINER
   =========================================== */

/* Container for footer navigation links */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

/* ===========================================
   FOOTER COLUMNS - NAVIGATION SECTIONS
   =========================================== */

/* Individual footer column */
.footer-column {
    flex: 1 1 200px;
}

/* Footer column title */
.footer-column h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

/* Footer column list items */
.footer-column ul li {
    margin-bottom: 0.5rem;
}

/* Footer column link hover effect */
.footer-column a:hover {
    color: var(--secondary-color);
}

/* ===========================================
   COPYRIGHT SECTION
   =========================================== */

/* Copyright notice styling */
.copyright {
    padding-top: 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}

/* ===========================================
   RESPONSIVE STYLES - MOBILE & TABLET
   =========================================== */

/* ===========================================
   TABLET BREAKPOINT (992px)
   =========================================== */

/* Tablet responsive styles */
@media screen and (max-width: 992px) {
    /* Tablet heading sizes */
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
}

/* ===========================================
   MOBILE BREAKPOINT (768px)
   =========================================== */

/* Mobile responsive styles */
@media screen and (max-width: 768px) {
    /* ===========================================
       CONTAINER & PADDING
       =========================================== */
    
    /* General container padding */
    .container {
        padding: 0 1rem;
    }
    
    /* Navbar container padding override */
    .navbar .container {
        padding: 0 1rem !important;
    }
    
    /* ===========================================
       HEADER RESPONSIVE
       =========================================== */
    
    /* Mobile navbar styling */
    .navbar {
        padding: 1.2rem 0;
        min-height: 75px;
    }
    
    /* Mobile navbar container */
    .navbar .container {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: nowrap;
        width: 100%;
        max-width: none;
        padding: 0 1rem;
        gap: 1rem;
    }
    
    /* Mobile logo sizing */
    .logo-img {
        height: 38px;
        flex-shrink: 0;
    }
    
    /* ===========================================
       MOBILE NAVIGATION
       =========================================== */
    
    /* Mobile navigation links */
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        height: 100vh;
        background-color: var(--dark-bg);
        z-index: 100;
        transition: var(--transition);
        padding: 6rem 2rem 2rem;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    }
    
    /* Active mobile navigation */
    .nav-links.active {
        left: 0;
    }
    
    /* Mobile navigation list */
    .nav-links ul {
        flex-direction: column;
        gap: 2rem;
    }
    
    /* Mobile navigation links */
    .nav-links a {
        font-size: 1.3rem;
        padding: 1.2rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    /* Platform dropdown responsive - Rectangle style */
    .platform-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(15, 15, 15, 0.7);
        margin-top: 0.75rem;
        border-radius: 16px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(16px);
        padding: 1.25rem;
        width: 100%;
        min-height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(4, 1fr);
        gap: 0.75rem;
    }
    
    /* Mobile responsive - single column for platform dropdown */
    @media screen and (max-width: 480px) {
        .platform-dropdown-menu {
            grid-template-columns: 1fr;
            grid-template-rows: repeat(8, 1fr);
            gap: 0.5rem;
        }
    }

    /* Company dropdown responsive - Rectangle style */
    .company-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(15, 15, 15, 0.7);
        margin-top: 0.75rem;
        border-radius: 16px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(16px);
        padding: 1.25rem;
        width: auto;
        min-height: auto;
    }
    
    .company-dropdown-menu a {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .company-dropdown-menu a:last-child {
        border-bottom: none;
    }
    
    .company-dropdown-menu a:hover {
        background: rgba(74, 222, 128, 0.05);
        border-radius: 8px;
        margin: 0 -0.75rem;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .company-dropdown-menu a .menu-title {
        font-size: 1rem;
        font-weight: 600;
        color: white;
        margin-bottom: 0.25rem;
    }
    
    .company-dropdown-menu a .menu-subtitle {
        font-size: 0.75rem;
        font-weight: 400;
        color: #FFFFFF;
        line-height: 1.3;
    }
    
    .company-dropdown-menu a:hover .menu-title {
        color: var(--secondary-color);
    }
    
    .company-dropdown-menu a:hover .menu-subtitle {
        color: #FFFFFF;
    }
    
    /* Mobile nav links ConnexAI style */
    .nav-links a {
        padding: 1rem;
        margin: 0.25rem 0;
        border-radius: 8px;
        background: transparent;
        border: 1px solid transparent;
        font-size: 1.1rem;
        font-weight: 500;
    }
    
    /* Universal mobile navbar styles - Applied to all pages */
    .navbar {
        padding: 1.2rem 0 !important;
        min-height: 75px !important;
    }
    
    .navbar .container {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-wrap: nowrap !important;
        width: 100% !important;
        max-width: none !important;
        padding: 0 1rem !important;
        gap: 1rem !important;
    }

    /* Index page mobile - Force same navbar size as about-us page */
    body:has(.hero) .navbar {
        padding: 1.2rem 0 !important;
        min-height: 75px !important;
    }
    
    body:has(.hero) .navbar .container {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-wrap: nowrap !important;
        width: 100% !important;
        max-width: none !important;
        padding: 0 1rem !important;
        gap: 1rem !important;
    }
    
    body:has(.hero) .logo-img {
        height: 38px !important;
    }
    
    /* Override for footer logo specifically */
    body:has(.hero) img.footer-logo,
    body:has(.hero) .logo-img.footer-logo {
        height: 50px !important;
        width: 108.69px !important;
    }
    
    body:has(.hero) .nav-links a {
        font-size: 1.3rem !important;
        padding: 1.2rem 0 !important;
    }
    
    body:has(.hero) .cta-button {
        padding: 0.7rem 1.1rem !important;
        font-size: 0.9rem !important;
    }
    
    body:has(.hero) .language-toggle {
        min-width: 38px !important;
        height: 38px !important;
    }
    
    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.15);
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        z-index: 104;
        width: 30px;
        height: 25px;
        justify-content: space-between;
        flex-shrink: 0;
        margin-left: 0.5rem;
        position: relative;
    }
    
    .hamburger span {
        width: 100%;
        height: 3px;
        background-color: white;
        transition: all 0.3s ease;
        border-radius: 2px;
    }
    
    .header-right {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        flex-shrink: 0;
        z-index: 102;
    }
    
    .language-selector {
        position: relative;
        z-index: 103;
    }
    
    .language-toggle {
        min-width: 38px;
        height: 38px;
        padding: 0.4rem;
        position: relative;
        z-index: 103;
    }
    
    .language-selector:hover .language-toggle {
        min-width: 110px;
        padding: 0.4rem 0.8rem;
    }
    
    .globe-icon {
        font-size: 1rem;
    }
    
    .language-dropdown {
        right: 0;
        min-width: 120px;
        z-index: 105;
        top: calc(100% + 5px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    
    .cta-button {
        padding: 0.7rem 1.1rem;
        font-size: 0.9rem;
        white-space: nowrap;
        flex-shrink: 0;
        z-index: 102;
        position: relative;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px) !important;
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0 !important;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px) !important;
    }
    
    /* Typography responsive */
    h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    h3 {
        font-size: 1.4rem;
    }
    
    /* Hero section responsive */
    .hero {
        padding: 4rem 0 6rem;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .hero-buttons .primary-button,
    .hero-buttons .secondary-button {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 1rem 2rem;
    }
    
    /* Sections responsive */
    section {
        padding: 4rem 0;
    }
    
    .section-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Grid layouts responsive */
    .services-grid,
    .features-grid,
    .automation-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card,
    .feature-card {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    /* Contact section responsive */
    .contact-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-info,
    .contact-form {
        width: 100%;
    }
    
}

@media screen and (max-width: 576px) {
    /* Container extra pequeï¿½o */
    .container {
        padding: 0 0.75rem;
    }

/* Typography extra pequeï¿½a */
    h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    /* Hero section extra responsive */
    .hero {
        padding: 3rem 0 5rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .hero-buttons .primary-button,
    .hero-buttons .secondary-button {
        width: 100%;
        max-width: 250px;
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Sections extra responsive */
    section {
        padding: 3rem 0;
    }
    
    .section-description {
        font-size: 0.95rem;
    }
    
    /* Service cards extra responsive */
    .service-card,
    .feature-card {
        padding: 1.5rem 1rem;
    }
    
    .service-card h3,
    .feature-card h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .service-card p,
    .feature-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Footer extra responsive */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-section ul li a {
        font-size: 0.85rem;
    }
    
    .footer-logo {
        width: 108.69px !important;
        height: 45px !important;
        max-width: none !important;
        object-fit: contain !important;
    }
    
    /* Override logo-img rules for footer logo on mobile */
    img.footer-logo,
    .logo-img.footer-logo {
        width: 108.69px !important;
        height: 45px !important;
        max-width: none !important;
        object-fit: contain !important;
    }
    
    .social-media {
        gap: 0.75rem;
        justify-content: center;
    }
    
    .social-link {
        width: 32px;
        height: 32px;
    }
    
    .social-link svg {
        width: 16px;
        height: 16px;
    }
    
    /* Hamburger extra responsive */
    .hamburger {
        width: 25px;
        margin-left: 0.25rem;
        flex-shrink: 0;
    }
    
    .hamburger span {
        height: 2px;
    }
    
    /* Footer extra responsive para mï¿½viles pequeï¿½os */
    footer {
        padding: 2rem 0 1rem 0;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    /* Servicios en mï¿½viles pequeï¿½os */
    .footer-section:nth-child(2) ul {
        grid-template-columns: 1fr;
        max-width: 250px;
        gap: 0.5rem;
        justify-items: center;
    }
    
    .footer-section:nth-child(2) ul li a {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
        text-align: center;
        width: 100%;
        max-width: 200px;
    }
    
    /* Compaï¿½ï¿½a en mï¿½viles pequeï¿½os */
    .footer-section:nth-child(3) ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .footer-section:nth-child(3) ul li a {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
        min-width: 120px;
        text-align: center;
    }
    
    /* Contacto en mï¿½viles pequeï¿½os */
    .footer-section:nth-child(4) {
        padding: 1.25rem;
    }
    
    .footer-section:nth-child(4) ul li a {
        font-size: 0.95rem;
        padding: 0.7rem;
        text-align: center;
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
    
    /* Logo y redes mï¿½s compactos */
    .footer-logo {
        width: 108.69px !important;
        height: 45px !important;
        max-width: none !important;
        object-fit: contain !important;
    }
    
    /* Override logo-img rules for footer logo on mobile */
    img.footer-logo,
    .logo-img.footer-logo {
        width: 108.69px !important;
        height: 45px !important;
        max-width: none !important;
        object-fit: contain !important;
    }
    
    .social-media {
        gap: 1rem;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
    }
    
    .social-link svg {
        width: 18px;
        height: 18px;
    }
    
    /* Tagline mï¿½s pequeï¿½o */
    .footer-section:first-child p {
        font-size: 1rem;
        margin: 1.2rem 0;
        color: white;
    }
}

/* Footer Styles */
footer {
    background-color: var(--dark-bg);
    color: white;
    padding: 3rem 0 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
        gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1;
}

/* Extra spacing between logo section and Services section */
.footer-section:nth-child(1) {
    margin-right: 2rem;
}

/* Extra spacing between Services and Platform sections */
.footer-section:nth-child(2) {
    margin-right: 1.5rem;
}

.footer-section:nth-child(3) {
    margin-left: 1.5rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-section p {
    color: #FFFFFF;
    font-size: 0.95rem;
    margin: 1rem 0;
    font-weight: 500;
}

/* Footer Logo Size */
.footer-logo {
    width: 108.69px !important;
    height: 50px !important;
    max-width: none !important;
    object-fit: contain !important;
    margin-bottom: 1rem;
}

/* Override logo-img rules for footer logo */
img.footer-logo,
.logo-img.footer-logo {
    width: 108.69px !important;
    height: 50px !important;
    max-width: none !important;
    object-fit: contain !important;
}

/* Ensure consistent footer logo size across all pages */
body:has(.hero) .footer-logo,
body:not(:has(.hero)) .footer-logo {
    width: 108.69px !important;
    height: 50px !important;
    max-width: none !important;
    object-fit: contain !important;
    margin-bottom: 1rem;
}

/* ===========================================
   MOBILE: HIDE SCROLL INDICATOR
   =========================================== */
/* Hide the animated mouse + "Discover More" indicator on mobile */
.is-phone .scroll-indicator,
.is-phone .discover-more-text,
.is-phone .scroll-mouse {
    display: none !important;
    visibility: hidden !important;
}

/* ===== ENHANCED ANIMATIONS & EFFECTS ===== */

/* Holographic Grid */
.holographic-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(139, 92, 246, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

/* Data Stream Effect */
.data-stream {
    position: absolute;
    width: 3px;
    height: 120px;
    background: linear-gradient(to bottom, transparent, #8B5CF6, #A855F7, #8B5CF6, transparent);
    animation: dataFlow 1.5s linear infinite;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.6);
}

@keyframes dataFlow {
    0% {
        transform: translateY(-120px);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

/* Enhanced AI Badge */
.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #8B5CF6;
    animation: badgePulse 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.badge-icon {
    font-size: 1.2rem;
    animation: iconBounce 2s ease-in-out infinite;
}

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

/* Enhanced Buttons */
.primary-button, .watch-demo-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.button-icon {
    font-size: 1.1rem;
    animation: iconPulse 2s ease-in-out infinite;
}

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

.button-text {
    transition: transform 0.3s ease;
}

.watch-demo-btn:hover .button-text {
    transform: translateX(5px);
}

/* New Era Section - Mobile specific - Only apply on mobile devices */
@media (max-width: 768px) {
    body:has(.communication-hero) .new-era-section,
    body:has(.social-media-hero) .new-era-section,
    body:has(.editorial-hero) .new-era-section,
    body:has(.crm-hero) .new-era-section,
    body:has(.web-app-hero) .new-era-section {
        background: #000000;
        padding: 48px 0px !important;
        position: relative;
        overflow: hidden;
        width: 412px !important;
        height: 549.11px !important;
        margin: 0 auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
}

/* New Era Section - PC specific */
body:has(.branding-hero) .new-era-section {
    background: #000000;
    padding: 6rem 0 !important;
    position: relative;
    overflow: hidden;
    min-height: 70vh !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* New Era Section - Default PC styles (for index.html) */
@media (min-width: 769px) {
    .new-era-section {
        background: #000000;
        padding: 6rem 0 !important;
        position: relative;
        overflow: hidden;
        min-height: 70vh !important;
        width: 100% !important;
        height: auto !important;
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
}

.new-era-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(124, 58, 237, 0.4), rgba(88, 28, 135, 0.2), transparent);
    z-index: 1;
}

.new-era-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    transform: translateY(-6rem);
}

.new-era-content h2 {
    font-family: 'Inter', 'Inter Fallback', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.2;
    animation: none !important;
    transition: none !important;
    transform: none !important;
    text-shadow: none !important;
    box-shadow: none !important;
    filter: none !important;
    background: none !important;
    border: none !important;
    outline: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.new-era-content p {
    font-family: 'Inter', 'Inter Fallback', sans-serif;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.begin-button {
    display: inline-block;
    background: #7c3aed;
    color: #ffffff;
    padding: 1rem 3rem;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Inter', 'Inter Fallback', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.begin-button:hover {
    background: #6d28d9;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.3);
}

/* Vertical line for new era section */
.vertical-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 0;
    background: linear-gradient(to top, #ffffff, rgba(255, 255, 255, 0.8));
    z-index: 3;
    box-shadow: none;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease, height 0.5s ease;
}

/* Show vertical line when section is in view */
.new-era-section.in-view .vertical-line {
    opacity: 1;
    height: 200px;
}

.vertical-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    width: 16px;
    height: 16px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    z-index: 1001;
    animation: circlePulse 2s ease-in-out infinite;
}

/* Pulse animation for the circle */
@keyframes circlePulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 255, 255, 1);
    }
}

/* Dark theme styles for new era section */
body.dark-theme .new-era-section {
    background: #000000;
}

body.dark-theme .new-era-content h2 {
    color: #ffffff !important;
}

body.dark-theme .new-era-content p {
    color: #ffffff !important;
}

/* Responsive styles for new era section - Mobile devices */
@media (max-width: 768px) {
    body:has(.communication-hero) .new-era-section,
    body:has(.social-media-hero) .new-era-section,
    body:has(.editorial-hero) .new-era-section,
    body:has(.crm-hero) .new-era-section,
    body:has(.web-app-hero) .new-era-section {
        width: 412px !important;
        height: 549.11px !important;
        padding: 48px 0px !important;
        margin: 0 auto !important;
    }
    
    body:has(.branding-hero) .new-era-section {
        padding: 4rem 0 !important;
        min-height: 60vh !important;
        width: 100% !important;
        height: auto !important;
        margin: 0 !important;
    }
}
    
    .new-era-content h2 {
        font-size: 36px;
    }
    
    .new-era-content p {
        font-size: 22.4px;
    }

@media (max-width: 480px) {
    body:has(.communication-hero) .new-era-section,
    body:has(.social-media-hero) .new-era-section,
    body:has(.editorial-hero) .new-era-section,
    body:has(.crm-hero) .new-era-section,
    body:has(.web-app-hero) .new-era-section {
        width: 412px !important;
        height: 549.11px !important;
        padding: 48px 0px !important;
        margin: 0 auto !important;
    }
    
    body:has(.branding-hero) .new-era-section {
        padding: 3rem 0 !important;
        min-height: 50vh !important;
        width: 100% !important;
        height: auto !important;
        margin: 0 !important;
    }
}
    
    .new-era-content h2 {
        font-size: 28px;
    }
    
    .new-era-content p {
        font-size: 24px;
    }
    
    .begin-button {
        padding: 16px 48px;
        font-size: 19.2px;
    }

/* Enhanced Product Cards */
.product-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: var(--radius);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    animation: iconFloat 3s ease-in-out infinite;
}

.card-icon:nth-child(1) { animation-delay: 0s; }
.card-icon:nth-child(2) { animation-delay: 0.5s; }
.card-icon:nth-child(3) { animation-delay: 1s; }
.card-icon:nth-child(4) { animation-delay: 1.5s; }
.card-icon:nth-child(5) { animation-delay: 2s; }
.card-icon:nth-child(6) { animation-delay: 2.5s; }

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

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    transition: left 0.6s ease;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
}

.product-card:hover .card-icon {
    animation: iconBounce 0.6s ease-in-out;
}

/* Progress ring border effect for product cards */

/* Light theme: white border for product cards */
body.light-theme .product-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each product card */
.product-card.progress-ring:nth-child(1) { --accent: #00E5FF; } /* Communication - Cyan */
.product-card.progress-ring:nth-child(2) { --accent: #FF6B6B; } /* Branding - Red */
.product-card.progress-ring:nth-child(3) { --accent: #4ECDC4; } /* Social Media - Teal */
.product-card.progress-ring:nth-child(4) { --accent: #45B7D1; } /* Editorial - Blue */
.product-card.progress-ring:nth-child(5) { --accent: #96CEB4; } /* AI Agent - Green */
.product-card.progress-ring:nth-child(6) { --accent: #FECA57; } /* Web Design - Yellow */

.product-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.product-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for editorial publication types cards */

/* Light theme: white border for editorial publication cards */
body.light-theme .publication-types-section .publication-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each editorial publication card */
.publication-types-section .publication-card.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Magazines & Newsletters - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.publication-types-section .publication-card.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Books & E-books - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.publication-types-section .publication-card.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Reports & Whitepapers - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.publication-types-section .publication-card.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Brochures & Catalogs - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring pseudo-elements for editorial publication cards */
.publication-types-section .publication-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.publication-types-section .publication-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Second bar going in opposite direction for editorial publication cards with different color */
.publication-types-section .publication-card.progress-ring::before {
    background:
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            color-mix(in oklab, var(--accent-2, #00E5FF) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent-2, #00E5FF) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent-2, #00E5FF) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    animation: pr-scan-reverse 2.8s linear infinite;
}

/* Single bar progress ring for CRM service cards */

/* Light theme: white border for CRM service cards */
body.light-theme .services-overview .crm-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM service card */
.services-overview .crm-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Custom CRM Development - Red */
.services-overview .crm-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* CRM Integration - Teal */
.services-overview .crm-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Data Analytics & Reporting - Yellow */
.services-overview .crm-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Mobile CRM Solutions - Purple */
.services-overview .crm-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Security & Compliance - Cyan */
.services-overview .crm-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Training & Support - Pink */

/* Single bar progress ring pseudo-elements for CRM service cards */
.services-overview .crm-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.services-overview .crm-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM feature cards */

/* Light theme: white border for CRM feature cards */
body.light-theme .features-section .feature-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM feature card */
.features-section .feature-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Contact Management - Red */
.features-section .feature-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Sales Pipeline - Teal */
.features-section .feature-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Email Marketing - Yellow */
.features-section .feature-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Communication Hub - Purple */
.features-section .feature-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Task Management - Cyan */
.features-section .feature-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Automated Notifications - Pink */

/* Single bar progress ring pseudo-elements for CRM feature cards */
.features-section .feature-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.features-section .feature-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM industry cards */

/* Light theme: white border for CRM industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Retail & E-commerce - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Financial Services - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real Estate - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Education - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Manufacturing - Pink */

/* Single bar progress ring pseudo-elements for CRM industry cards */
.industries-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.industries-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for editorial benefits and process cards */

/* Light theme: white border for editorial benefit and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each editorial benefit card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Strategic Content - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Design Excellence - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Fast Turnaround - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Attention to Detail - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each editorial process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Content Strategy - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Writing & Editing - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Design & Layout - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Review & Finalization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring pseudo-elements for editorial benefit and process cards */
.benefits-section .benefit-item.progress-ring::before,
.process-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.benefits-section .benefit-item.progress-ring::after,
.process-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Second bar going in opposite direction for editorial benefit and process cards with different color */
.benefits-section .benefit-item.progress-ring::before,
.process-section .benefit-item.progress-ring::before {
    background:
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            color-mix(in oklab, var(--accent-2, #00E5FF) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent-2, #00E5FF) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent-2, #00E5FF) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    animation: pr-scan-reverse 2.8s linear infinite;
}

/* Single bar progress ring for CRM service cards */

/* Light theme: white border for CRM service cards */
body.light-theme .services-overview .crm-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM service card */
.services-overview .crm-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Custom CRM Development - Red */
.services-overview .crm-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* CRM Integration - Teal */
.services-overview .crm-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Data Analytics & Reporting - Yellow */
.services-overview .crm-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Mobile CRM Solutions - Purple */
.services-overview .crm-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Security & Compliance - Cyan */
.services-overview .crm-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Training & Support - Pink */

/* Single bar progress ring pseudo-elements for CRM service cards */
.services-overview .crm-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.services-overview .crm-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM feature cards */

/* Light theme: white border for CRM feature cards */
body.light-theme .features-section .feature-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM feature card */
.features-section .feature-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Contact Management - Red */
.features-section .feature-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Sales Pipeline - Teal */
.features-section .feature-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Email Marketing - Yellow */
.features-section .feature-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Communication Hub - Purple */
.features-section .feature-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Task Management - Cyan */
.features-section .feature-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Automated Notifications - Pink */

/* Single bar progress ring pseudo-elements for CRM feature cards */
.features-section .feature-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.features-section .feature-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM industry cards */

/* Light theme: white border for CRM industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Retail & E-commerce - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Financial Services - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real Estate - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Education - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Manufacturing - Pink */

/* Single bar progress ring pseudo-elements for CRM industry cards */
.industries-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.industries-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Enhanced Discover Links */
.discover-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.link-arrow {
    transition: transform 0.3s ease;
}

.discover-link:hover .link-arrow {
    transform: translateX(5px);
}

/* ===== NEW ADDITIONAL ANIMATIONS ===== */

/* Glowing Text Effect */
.gradient-text {
    background: linear-gradient(45deg, #8B5CF6, #7C3AED, #A855F7, #8B5CF6);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Hero Title Glow */
.hero h1 {
    animation: heroTitleGlow 6s ease-in-out infinite;
}

@keyframes heroTitleGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
    }
    50% {
        text-shadow: 0 0 40px rgba(139, 92, 246, 0.6), 0 0 60px rgba(59, 130, 246, 0.3);
    }
}

/* Cyber Glow Effect - Sin resplandor rojo */
.cyber-glow {
    position: relative;
    overflow: hidden;
}

.cyber-glow::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #8B5CF6, #3B82F6, #06B6D4, #8B5CF6);
    background-size: 300% 300%;
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cyber-glow:hover::before {
    opacity: 0.3;
}

/* Eliminar la animaciï¿½n que causaba el efecto de resplandor */
@keyframes cyberGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@media (max-width: 480px) {
    .card-icon {
        font-size: 2rem;
    }
}

/* ===== CONNEXAI STYLE AI AUTOMATION SECTION ===== */

.ai-automation {
    background: #111827;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

/* Subtle Overlay */
.purple-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 2;
    pointer-events: none;
}

/* Remove overlay effect for ai-automation section */
.ai-automation .purple-overlay {
    display: none;
}

body.dark-theme .ai-automation {
    background: #111827 !important;
}

/* Header Section */
.ai-automation-header {
    text-align: center;
    margin-bottom: 6rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
    position: relative;
    z-index: 15;
}

.ai-automation-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.ai-automation-header .section-description {
    font-size: 1.25rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Dark theme styles for ai-automation-header */
body.dark-theme .ai-automation-header h2 {
    color: #ffffff !important;
}

body.dark-theme .ai-automation-header .section-description {
    color: #8b5cf6 !important;
}

.discover-button {
    display: inline-block;
    background: #8b5cf6;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.discover-button:hover {
    background: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
}

/* Two Column Layout */
.ai-automation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: center;
    position: relative;
    z-index: 15;
}

/* Left Column - Features */
.features-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    padding: 2rem 0;
    position: relative;
    cursor: pointer;
    border-radius: 8px;
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-bottom: 1px solid #333333;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    background: rgba(139, 92, 246, 0.05);
    border-radius: 12px;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item::before,
.feature-item::after {
    display: none !important;
}

.feature-item .progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: rgba(102, 102, 102, 0.4);
    transform: scaleX(1);
    transform-origin: left;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
    width: 100%;
}

/* .feature-item:hover .progress-bar {
    transform: scaleX(1);
    animation: progressBarMove 2s linear infinite, progressGlow 0.6s ease-out;
    background-size: 400% 100%;
} */

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

@keyframes progressGlow {
    0% {
        box-shadow: 0 0 5px rgba(139, 92, 246, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.8);
    }
    100% {
        box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
    }
}

/* .feature-item:hover {
    transform: translateX(10px);
} */

.ai-automation .feature-icon {
    width: 80px;
    height: 80px;
    background: #333333;
    border: 1px solid #444444;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888888;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    margin: 0;
}

.feature-icon::before,
.feature-icon::after {
    display: none !important;
}

/* .feature-item:hover .feature-icon {
    background: #7c3aed;
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
    animation: iconPulse 0.6s ease-out;
} */

@keyframes iconPulse {
    0% {
        box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
    }
    50% {
        box-shadow: 0 12px 35px rgba(139, 92, 246, 0.6);
    }
    100% {
        box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
    }
}

/* Pseudo-element removed */

.feature-content h3 {
    font-family: 'Inter', 'Inter Fallback', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    position: relative;
    text-align: left;
}

/* .feature-item:hover .feature-content h3 {
    color: #8b5cf6;
    transform: translateX(5px);
} */

.feature-content p {
    font-family: 'Inter', 'Inter Fallback', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

/* .feature-item:hover .feature-content p {
    color: #ffffff;
    transform: translateX(5px);
} */

/* Active state - when item is "on" */
.feature-item.active {
    background: rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    transform: translateX(15px);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.2);
}

.feature-item.active .feature-content h3 {
    color: #ffffff;
    text-align: left;
    transform: translateX(5px);
}

.feature-item.active .feature-content p {
    color: #ffffff;
    text-align: left;
    transform: translateX(5px);
}

.ai-automation .feature-item.active .feature-icon {
    background: #7c3aed;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    width: 80px;
    height: 80px;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
    transform: scale(1.1);
}

.feature-item.active .progress-bar {
    transform: scaleX(1);
    background: linear-gradient(90deg, #8b5cf6, #a78bfa, #ffffff, #a78bfa, #8b5cf6, #a78bfa, #ffffff, #a78bfa, #8b5cf6);
    background-size: 400% 100%;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
    animation: progressBarMove 3s linear infinite;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
}

/* Right Column - AI Image */
.ai-image-column {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 16 / 9; /* match image ratio so ring fits exactly */
}

/* Feature image containers for responsive design */
.feature-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
}

/* Progress ring border for the AI image area */
.progress-ring {
    --ring-width: 2px;            /* thickness of the border */
    /* --track: #767676; */             /* gray base border */
    --accent: #8B5CF6;            /* purple sweep color */
    --arc: 22deg;                 /* head size */
    --trail: 80deg;               /* trail length behind the head */
    --s: 0deg;                    /* start angle for sweep */
    position: relative;           /* ensure pseudo-element is positioned correctly */
}

.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px; /* keep strictly inside, avoid subpixel bleed */
    border-radius: inherit; /* match host radius */
    /*   */ /* solid gray ring */
    /* cut out the center so it looks like a border */
    padding: var(--ring-width);
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 3;                  /* keep ring above images */
}

/* Moving color sweep over the gray ring */
.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px; /* keep strictly inside, avoid subpixel bleed */
    border-radius: inherit;
    padding: var(--ring-width);
    /* two layers: soft trail + bright head */
    background:
        conic-gradient(from var(--s),
            color-mix(in oklab, var(--accent) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent) 0%, transparent) var(--trail),
            transparent var(--trail) 360deg
        ) border-box,
        conic-gradient(from var(--s),
            transparent 0 calc(var(--trail) - var(--arc)),
            color-mix(in oklab, var(--accent) 85%, transparent) calc(var(--trail) - var(--arc)) var(--trail),
            transparent var(--trail) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    animation: pr-scan 2.8s linear infinite;
    pointer-events: none;
    z-index: 4;
    transform-origin: 50% 50%;
}

/* Animate the start angle of the conic gradient instead of rotating the element */
@property --s { syntax: '<angle>'; inherits: false; initial-value: 0deg; }
@keyframes pr-scan { to { --s: 360deg; } }

/* Fallback for browsers that don't animate custom properties (some mobile) */
@keyframes pr-rotate { to { transform: rotate(1turn); } }
@supports not (background: conic-gradient(from var(--s), red 0 10deg, transparent 10deg)) {
    .progress-ring::after,
    .service-card.progress-ring::after {
        animation: pr-rotate 2.8s linear infinite;
        will-change: transform;
    }
}

/* Mobile tuning: make progress ring a bit thicker/clearer on small screens */
@media (max-width: 768px) {
    .service-card.progress-ring {
        --ring-width: 2px;
        --trail: 70deg;
    }
}

/* Optional: animate ring colors without rotating the border */
.progress-ring.color-animate::before {
    filter: hue-rotate(0deg);
    animation: pr-hue 8s linear infinite;
}

@keyframes pr-hue {
    to { filter: hue-rotate(360deg); }
}

/* Optional animated rainbow effect */
.progress-ring.rainbow::before {
    background: conic-gradient(
        from 0turn,
        #00E5FF, #7CFF6B, #FFD166, #FF6B6B, #8B5CF6, #00E5FF
    ) border-box;
    animation: pr-spin 6s linear infinite;
}

@keyframes pr-spin { to { transform: rotate(1turn); } }

/* Feature images styles */
.feature-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease-in-out;
    pointer-events: none;
}

/* Show active image */
.feature-image.active {
    opacity: 1;
    transform: scale(1);
}

/* Image container animation */
.ai-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease;
}

.ai-image-container:hover {
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
}

.ai-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 12px;
}

/* .ai-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 80px rgba(139, 92, 246, 0.2);
} */

/* ===========================================
   MAKE.COM STYLE SECTION - AI AUTOMATION PLATFORM
   =========================================== */

/* Main make.com style section container */
.make-style-section {
    background: #f8fafc;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* ===========================================
   MAKE.COM CONTENT HEADER
   =========================================== */

/* Main content container for make.com section */
.make-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 80px;
}

/* Make.com section title */
.make-content h2 {
    font-family: 'Inter', 'Inter Fallback', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #4c1d95;
    margin-bottom: 60px;
    line-height: 1.2;
}

/* ===========================================
   FEATURE CARDS GRID - AI SERVICES
   =========================================== */

/* Grid container for feature cards */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

/* Individual feature card styling */
.feature-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* ===========================================
   FEATURE ICONS - AI SERVICE ICONS
   =========================================== */

/* Feature icon container styling */
.make-style-section .feature-icon {
    background: none !important;
    border: none !important;
}

/* Feature icon image sizing */
.feature-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* ===========================================
   FEATURE CARD CONTENT
   =========================================== */

/* Feature card title */
.feature-card h3 {
    font-family: 'Inter', 'Inter Fallback', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #4c1d95;
    margin-bottom: 16px;
}

/* Feature card description */
.feature-card p {
    font-family: 'Inter', 'Inter Fallback', sans-serif;
    color: #220041;
    line-height: 1.6;
    font-size: 1rem;
}

/* ===========================================
   EXPLORE BUTTON - CALL TO ACTION
   =========================================== */

/* Explore button styling */
.explore-button {
    display: inline-block;
    background: #8b5cf6;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Inter', 'Inter Fallback', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

/* Explore button hover effect */
.explore-button:hover {
    background: #7c3aed;
    transform: translateY(-2px);
}

/* ===========================================
   MAKE.COM BOTTOM SECTION
   =========================================== */

/* Bottom section container */
.make-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.make-bottom h3 {
    font-family: 'Inter', 'Inter Fallback', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #220041;
    margin-bottom: 20px;
}

.make-bottom p {
    font-family: 'Inter', 'Inter Fallback', sans-serif;
    font-size: 18px;
    color: #220041;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1.6;
}

.tab-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px auto 20px auto;
    flex-wrap: wrap;
    max-width: 1200px;
    padding: 0 0;
}

/* Tab Progress Bar - Hidden since each tab has its own line */
.tab-progress-bar {
    display: none;
}

.progress-line {
    width: 100%;
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    display: flex;
    overflow: visible;
}

.progress-segment {
    flex: 1;
    height: 100%;
    background: #e5e7eb;
    transition: background-color 0.3s ease;
    position: relative;
}

.progress-segment.active {
    background: #8b5cf6;
}

.progress-segment:first-child {
    border-radius: 2px 0 0 2px;
}

.progress-segment:last-child {
    border-radius: 0 2px 2px 0;
}

/* Dark theme for progress bar */
body.dark-theme .progress-line {
    background: #374151;
}

body.dark-theme .progress-segment {
    background: #374151;
}

body.dark-theme .progress-segment.active {
    background: #8b5cf6;
}

.tab-button {
    background: none;
    border: none;
    font-family: 'Inter', 'Inter Fallback', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #220041;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    border-bottom: 2px solid #d1d5db;
    text-align: center;
    line-height: 1.2;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab-button:hover {
    color: #4c1d95;
    border-bottom: 2px solid #d1d5db;
}

.tab-button.active {
    color: #8b5cf6;
    border-bottom: 2px solid #8b5cf6;
}

/* Light theme tab button visibility */
body.light-theme .tab-button.active {
    color: #1f2937 !important;
    font-weight: 600;
}

/* Specific override for tab buttons in light theme */
body.light-theme .tab-button {
    color: #1f2937 !important;
}

body.light-theme .tab-button:hover {
    color: #374151 !important;
}

/* Force tab button color in light theme with maximum specificity */
body.light-theme .tab-navigation .tab-button,
body.light-theme .tab-navigation .tab-button.active {
    color: #8b5cf6 !important;
    font-weight: 600 !important;
}

/* Additional override for tab buttons - force visibility */
.tab-navigation .tab-button.active {
    color: #8b5cf6 !important;
    font-weight: 600 !important;
}

/* Ensure tab buttons are visible in light mode - REMOVED to avoid conflict */

/* Fix ONLY the specific h4#tab-title element in light theme */
body.light-theme h4#tab-title.animate {
    color: #1f2937 !important;
    font-weight: 600 !important;
}

/* Tab buttons active state - both day and night mode */
.tab-button.active {
    color: #8b5cf6 !important;
    font-weight: 600 !important;
}

/* Ensure active state works in both themes */
body.light-theme .tab-button.active,
body.dark-theme .tab-button.active {
    color: #8b5cf6 !important;
    font-weight: 600 !important;
}

/* Customer Experience button layout - make Customer appear below Experience - ALWAYS */
.tab-button[data-tab="Customer Experience"],
.tab-button[data-tab="Customer Experience"]:not(.active),
.tab-button[data-tab="Customer Experience"].active {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1.2 !important;
    text-align: center !important;
}

.tab-button[data-tab="Customer Experience"] div,
.tab-button[data-tab="Customer Experience"]:not(.active) div,
.tab-button[data-tab="Customer Experience"].active div {
    display: block !important;
    line-height: 1.1 !important;
    width: 100% !important;
}

/* Force the layout for all states */
.tab-navigation .tab-button[data-tab="Customer Experience"] {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.tab-navigation .tab-button[data-tab="Customer Experience"] div {
    display: block !important;
    line-height: 1.1 !important;
}

/* Override for light theme - ALL STATES */
body.light-theme .tab-button[data-tab="Customer Experience"],
body.light-theme .tab-button[data-tab="Customer Experience"]:not(.active),
body.light-theme .tab-button[data-tab="Customer Experience"].active {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

body.light-theme .tab-button[data-tab="Customer Experience"] div,
body.light-theme .tab-button[data-tab="Customer Experience"]:not(.active) div,
body.light-theme .tab-button[data-tab="Customer Experience"].active div {
    display: block !important;
    line-height: 1.1 !important;
    width: 100% !important;
}

/* Override for dark theme - ALL STATES */
body.dark-theme .tab-button[data-tab="Customer Experience"],
body.dark-theme .tab-button[data-tab="Customer Experience"]:not(.active),
body.dark-theme .tab-button[data-tab="Customer Experience"].active {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

body.dark-theme .tab-button[data-tab="Customer Experience"] div,
body.dark-theme .tab-button[data-tab="Customer Experience"]:not(.active) div,
body.dark-theme .tab-button[data-tab="Customer Experience"].active div {
    display: block !important;
    line-height: 1.1 !important;
    width: 100% !important;
}

/* Additional dark theme overrides with higher specificity */
body.dark-theme .tab-navigation .tab-button[data-tab="Customer Experience"] {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

body.dark-theme .tab-navigation .tab-button[data-tab="Customer Experience"] div {
    display: block !important;
    line-height: 1.1 !important;
    width: 100% !important;
}

/* Force dark theme layout with maximum specificity */
body.dark-theme .make-bottom .tab-navigation .tab-button[data-tab="Customer Experience"] {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

body.dark-theme .make-bottom .tab-navigation .tab-button[data-tab="Customer Experience"] div {
    display: block !important;
    line-height: 1.1 !important;
    width: 100% !important;
}

/* Specific fix for English language in dark theme */
body.dark-theme[lang="en"] .tab-button[data-tab="Customer Experience"] {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

body.dark-theme[lang="en"] .tab-button[data-tab="Customer Experience"] div {
    display: block !important;
    line-height: 1.1 !important;
    width: 100% !important;
}

/* Additional English language overrides */
body.dark-theme .tab-navigation .tab-button[data-tab="Customer Experience"][lang="en"] {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

body.dark-theme .tab-navigation .tab-button[data-tab="Customer Experience"][lang="en"] div {
    display: block !important;
    line-height: 1.1 !important;
    width: 100% !important;
}

/* Force English layout in dark theme with maximum specificity */
html[lang="en"] body.dark-theme .tab-button[data-tab="Customer Experience"] {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

html[lang="en"] body.dark-theme .tab-button[data-tab="Customer Experience"] div {
    display: block !important;
    line-height: 1.1 !important;
    width: 100% !important;
}

/* Override for all responsive states */
@media screen and (max-width: 768px) {
    .tab-button[data-tab="Customer Experience"] {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .tab-button[data-tab="Customer Experience"] div {
        display: block !important;
        line-height: 1.1 !important;
    }
}

@media screen and (max-width: 576px) {
    .tab-button[data-tab="Customer Experience"] {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .tab-button[data-tab="Customer Experience"] div {
        display: block !important;
        line-height: 1.1 !important;
    }
}

.tab-content {
    display: flex;
    flex-direction: row;
    gap: 60px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 80px auto 0 auto;
}

.tab-text {
    flex: 1;
    text-align: left;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

.tab-image {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
}

.tab-text h4 {
    font-family: 'Inter', 'Inter Fallback', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.tab-text p {
    font-size: 18px;
    color: #220041;
    line-height: 1.6;
    margin-bottom: 30px;
    margin-left: 0 !important;
    padding-left: 0 !important;
    text-align: left !important;
    width: 100%;
}

.tab-image {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tab-content-image {
    width: 100%;
    max-width: 500px;
    height: 350px;
    border-radius: 12px;
    margin-bottom: 30px;
    object-fit: cover;
}

.placeholder-image {
    margin-bottom: 30px;
}

.workflow-dots {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.workflow-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.workflow-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.workflow-icon.green {
    background: #10b981;
}

.workflow-icon.blue {
    background: #3b82f6;
}

.workflow-icon.orange {
    background: #f59e0b;
}

.workflow-item span {
    font-size: 0.9rem;
    color: #6b46c1;
    font-weight: 500;
}

/* Dark theme for Make.com section */
body.dark-theme .make-style-section {
    background: #111827;
}

body.dark-theme .make-content h2 {
    color: #ffffff !important;
}

body.dark-theme .feature-card {
    background: #1A1A1A;
    border: 1px solid #333333;
}

body.dark-theme .feature-card h3 {
    color: #8b5cf6 !important;
}

body.dark-theme .feature-card p {
    color: #a78bfa;
}

/* Progress ring border effect for testimonial cards */

/* Light theme: white border for testimonial cards */
body.light-theme .testimonial-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each testimonial card */
.testimonial-card.progress-ring:nth-child(1) { --accent: #8B5CF6; } /* Our Mission - Purple */
.testimonial-card.progress-ring:nth-child(2) { --accent: #00E5FF; } /* Our Vision - Cyan */
.testimonial-card.progress-ring:nth-child(3) { --accent: #FF6B6B; } /* Our Promise - Red */

/* Progress ring border effect for service cards in services page */
.services-offered .service-card.progress-ring {
    --track: rgba(26, 26, 26, 0.8); /* semi-transparent dark gray border for service cards */
}

/* Light theme: semi-transparent white border for service cards */
body.light-theme .services-offered .service-card.progress-ring {
    --track: rgba(255, 255, 255, 0.8); /* semi-transparent white border in light mode */
}

/* Different accent colors for each service card */
.services-offered .service-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Communication Strategies - Red */
.services-offered .service-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Branding - Teal */
.services-offered .service-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Social Media - Yellow */
.services-offered .service-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Editorial - Purple */
.services-offered .service-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* IA Agent - Cyan */
.services-offered .service-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Web Development - Pink */

/* Progress ring pseudo-elements for service cards in services page */
.services-offered .service-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.services-offered .service-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for editorial publication types cards */

/* Light theme: white border for editorial publication cards */
body.light-theme .publication-types-section .publication-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each editorial publication card */
.publication-types-section .publication-card.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Magazines & Newsletters - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.publication-types-section .publication-card.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Books & E-books - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.publication-types-section .publication-card.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Reports & Whitepapers - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.publication-types-section .publication-card.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Brochures & Catalogs - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring pseudo-elements for editorial publication cards */
.publication-types-section .publication-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.publication-types-section .publication-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Second bar going in opposite direction for editorial publication cards with different color */
.publication-types-section .publication-card.progress-ring::before {
    background:
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            color-mix(in oklab, var(--accent-2, #00E5FF) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent-2, #00E5FF) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent-2, #00E5FF) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    animation: pr-scan-reverse 2.8s linear infinite;
}

/* Single bar progress ring for CRM service cards */

/* Light theme: white border for CRM service cards */
body.light-theme .services-overview .crm-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM service card */
.services-overview .crm-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Custom CRM Development - Red */
.services-overview .crm-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* CRM Integration - Teal */
.services-overview .crm-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Data Analytics & Reporting - Yellow */
.services-overview .crm-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Mobile CRM Solutions - Purple */
.services-overview .crm-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Security & Compliance - Cyan */
.services-overview .crm-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Training & Support - Pink */

/* Single bar progress ring pseudo-elements for CRM service cards */
.services-overview .crm-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.services-overview .crm-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM feature cards */

/* Light theme: white border for CRM feature cards */
body.light-theme .features-section .feature-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM feature card */
.features-section .feature-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Contact Management - Red */
.features-section .feature-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Sales Pipeline - Teal */
.features-section .feature-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Email Marketing - Yellow */
.features-section .feature-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Communication Hub - Purple */
.features-section .feature-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Task Management - Cyan */
.features-section .feature-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Automated Notifications - Pink */

/* Single bar progress ring pseudo-elements for CRM feature cards */
.features-section .feature-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.features-section .feature-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM industry cards */

/* Light theme: white border for CRM industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Retail & E-commerce - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Financial Services - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real Estate - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Education - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Manufacturing - Pink */

/* Single bar progress ring pseudo-elements for CRM industry cards */
.industries-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.industries-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for editorial benefits and process cards */

/* Light theme: white border for editorial benefit and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each editorial benefit card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Strategic Content - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Design Excellence - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Fast Turnaround - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Attention to Detail - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each editorial process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Content Strategy - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Writing & Editing - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Design & Layout - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Review & Finalization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring pseudo-elements for editorial benefit and process cards */
.benefits-section .benefit-item.progress-ring::before,
.process-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.benefits-section .benefit-item.progress-ring::after,
.process-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Second bar going in opposite direction for editorial benefit and process cards with different color */
.benefits-section .benefit-item.progress-ring::before,
.process-section .benefit-item.progress-ring::before {
    background:
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            color-mix(in oklab, var(--accent-2, #00E5FF) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent-2, #00E5FF) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent-2, #00E5FF) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    animation: pr-scan-reverse 2.8s linear infinite;
}

/* Single bar progress ring for CRM service cards */

/* Light theme: white border for CRM service cards */
body.light-theme .services-overview .crm-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM service card */
.services-overview .crm-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Custom CRM Development - Red */
.services-overview .crm-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* CRM Integration - Teal */
.services-overview .crm-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Data Analytics & Reporting - Yellow */
.services-overview .crm-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Mobile CRM Solutions - Purple */
.services-overview .crm-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Security & Compliance - Cyan */
.services-overview .crm-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Training & Support - Pink */

/* Single bar progress ring pseudo-elements for CRM service cards */
.services-overview .crm-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.services-overview .crm-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM feature cards */

/* Light theme: white border for CRM feature cards */
body.light-theme .features-section .feature-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM feature card */
.features-section .feature-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Contact Management - Red */
.features-section .feature-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Sales Pipeline - Teal */
.features-section .feature-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Email Marketing - Yellow */
.features-section .feature-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Communication Hub - Purple */
.features-section .feature-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Task Management - Cyan */
.features-section .feature-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Automated Notifications - Pink */

/* Single bar progress ring pseudo-elements for CRM feature cards */
.features-section .feature-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.features-section .feature-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM industry cards */

/* Light theme: white border for CRM industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Retail & E-commerce - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Financial Services - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real Estate - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Education - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Manufacturing - Pink */

/* Single bar progress ring pseudo-elements for CRM industry cards */
.industries-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.industries-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Progress ring border effect for membership plan cards */
.membership-plans .plan-card.progress-ring {
    --track: rgba(26, 26, 26, 0.8); /* semi-transparent dark gray border for plan cards */
}

/* Light theme: semi-transparent white border for plan cards */
body.light-theme .membership-plans .plan-card.progress-ring {
    --track: rgba(255, 255, 255, 0.8); /* semi-transparent white border in light mode */
}

/* Different accent colors for each plan card - matching their background gradients */
.membership-plans .plan-card.progress-ring:nth-child(1) { --accent: #60a5fa; } /* White Plan - Light Blue (start of gradient) */
.membership-plans .plan-card.progress-ring:nth-child(2) { --accent: #3b82f6; } /* Blue Plan - Blue (start of gradient) */
.membership-plans .plan-card.progress-ring:nth-child(3) { --accent: #8b5cf6; } /* Purple Plan - Purple (start of gradient) */

/* Progress ring pseudo-elements for membership plan cards */
.membership-plans .plan-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.membership-plans .plan-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for editorial publication types cards */

/* Light theme: white border for editorial publication cards */
body.light-theme .publication-types-section .publication-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each editorial publication card */
.publication-types-section .publication-card.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Magazines & Newsletters - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.publication-types-section .publication-card.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Books & E-books - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.publication-types-section .publication-card.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Reports & Whitepapers - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.publication-types-section .publication-card.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Brochures & Catalogs - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring pseudo-elements for editorial publication cards */
.publication-types-section .publication-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.publication-types-section .publication-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Second bar going in opposite direction for editorial publication cards with different color */
.publication-types-section .publication-card.progress-ring::before {
    background:
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            color-mix(in oklab, var(--accent-2, #00E5FF) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent-2, #00E5FF) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent-2, #00E5FF) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    animation: pr-scan-reverse 2.8s linear infinite;
}

/* Single bar progress ring for CRM service cards */

/* Light theme: white border for CRM service cards */
body.light-theme .services-overview .crm-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM service card */
.services-overview .crm-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Custom CRM Development - Red */
.services-overview .crm-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* CRM Integration - Teal */
.services-overview .crm-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Data Analytics & Reporting - Yellow */
.services-overview .crm-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Mobile CRM Solutions - Purple */
.services-overview .crm-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Security & Compliance - Cyan */
.services-overview .crm-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Training & Support - Pink */

/* Single bar progress ring pseudo-elements for CRM service cards */
.services-overview .crm-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.services-overview .crm-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM feature cards */

/* Light theme: white border for CRM feature cards */
body.light-theme .features-section .feature-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM feature card */
.features-section .feature-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Contact Management - Red */
.features-section .feature-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Sales Pipeline - Teal */
.features-section .feature-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Email Marketing - Yellow */
.features-section .feature-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Communication Hub - Purple */
.features-section .feature-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Task Management - Cyan */
.features-section .feature-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Automated Notifications - Pink */

/* Single bar progress ring pseudo-elements for CRM feature cards */
.features-section .feature-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.features-section .feature-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM industry cards */

/* Light theme: white border for CRM industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Retail & E-commerce - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Financial Services - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real Estate - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Education - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Manufacturing - Pink */

/* Single bar progress ring pseudo-elements for CRM industry cards */
.industries-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.industries-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for editorial benefits and process cards */

/* Light theme: white border for editorial benefit and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each editorial benefit card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Strategic Content - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Design Excellence - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Fast Turnaround - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Attention to Detail - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each editorial process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Content Strategy - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Writing & Editing - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Design & Layout - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Review & Finalization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring pseudo-elements for editorial benefit and process cards */
.benefits-section .benefit-item.progress-ring::before,
.process-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.benefits-section .benefit-item.progress-ring::after,
.process-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Second bar going in opposite direction for editorial benefit and process cards with different color */
.benefits-section .benefit-item.progress-ring::before,
.process-section .benefit-item.progress-ring::before {
    background:
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            color-mix(in oklab, var(--accent-2, #00E5FF) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent-2, #00E5FF) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent-2, #00E5FF) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    animation: pr-scan-reverse 2.8s linear infinite;
}

/* Single bar progress ring for CRM service cards */

/* Light theme: white border for CRM service cards */
body.light-theme .services-overview .crm-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM service card */
.services-overview .crm-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Custom CRM Development - Red */
.services-overview .crm-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* CRM Integration - Teal */
.services-overview .crm-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Data Analytics & Reporting - Yellow */
.services-overview .crm-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Mobile CRM Solutions - Purple */
.services-overview .crm-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Security & Compliance - Cyan */
.services-overview .crm-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Training & Support - Pink */

/* Single bar progress ring pseudo-elements for CRM service cards */
.services-overview .crm-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.services-overview .crm-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM feature cards */

/* Light theme: white border for CRM feature cards */
body.light-theme .features-section .feature-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM feature card */
.features-section .feature-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Contact Management - Red */
.features-section .feature-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Sales Pipeline - Teal */
.features-section .feature-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Email Marketing - Yellow */
.features-section .feature-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Communication Hub - Purple */
.features-section .feature-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Task Management - Cyan */
.features-section .feature-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Automated Notifications - Pink */

/* Single bar progress ring pseudo-elements for CRM feature cards */
.features-section .feature-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.features-section .feature-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM industry cards */

/* Light theme: white border for CRM industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Retail & E-commerce - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Financial Services - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real Estate - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Education - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Manufacturing - Pink */

/* Single bar progress ring pseudo-elements for CRM industry cards */
.industries-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.industries-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Progress ring border effect for strategy cards */

/* Light theme: white border for strategy cards */
body.light-theme .strategy-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each strategy card - dual colors */
.strategy-card.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.strategy-card.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Strategy Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.strategy-card.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Implementation - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.strategy-card.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Monitoring & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring pseudo-elements for strategy cards */
.strategy-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.strategy-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for editorial publication types cards */

/* Light theme: white border for editorial publication cards */
body.light-theme .publication-types-section .publication-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each editorial publication card */
.publication-types-section .publication-card.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Magazines & Newsletters - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.publication-types-section .publication-card.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Books & E-books - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.publication-types-section .publication-card.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Reports & Whitepapers - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.publication-types-section .publication-card.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Brochures & Catalogs - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring pseudo-elements for editorial publication cards */
.publication-types-section .publication-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.publication-types-section .publication-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Second bar going in opposite direction for editorial publication cards with different color */
.publication-types-section .publication-card.progress-ring::before {
    background:
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            color-mix(in oklab, var(--accent-2, #00E5FF) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent-2, #00E5FF) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent-2, #00E5FF) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    animation: pr-scan-reverse 2.8s linear infinite;
}

/* Single bar progress ring for CRM service cards */

/* Light theme: white border for CRM service cards */
body.light-theme .services-overview .crm-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM service card */
.services-overview .crm-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Custom CRM Development - Red */
.services-overview .crm-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* CRM Integration - Teal */
.services-overview .crm-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Data Analytics & Reporting - Yellow */
.services-overview .crm-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Mobile CRM Solutions - Purple */
.services-overview .crm-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Security & Compliance - Cyan */
.services-overview .crm-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Training & Support - Pink */

/* Single bar progress ring pseudo-elements for CRM service cards */
.services-overview .crm-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.services-overview .crm-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM feature cards */

/* Light theme: white border for CRM feature cards */
body.light-theme .features-section .feature-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM feature card */
.features-section .feature-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Contact Management - Red */
.features-section .feature-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Sales Pipeline - Teal */
.features-section .feature-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Email Marketing - Yellow */
.features-section .feature-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Communication Hub - Purple */
.features-section .feature-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Task Management - Cyan */
.features-section .feature-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Automated Notifications - Pink */

/* Single bar progress ring pseudo-elements for CRM feature cards */
.features-section .feature-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.features-section .feature-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM industry cards */

/* Light theme: white border for CRM industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Retail & E-commerce - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Financial Services - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real Estate - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Education - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Manufacturing - Pink */

/* Single bar progress ring pseudo-elements for CRM industry cards */
.industries-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.industries-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for editorial benefits and process cards */

/* Light theme: white border for editorial benefit and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each editorial benefit card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Strategic Content - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Design Excellence - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Fast Turnaround - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Attention to Detail - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each editorial process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Content Strategy - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Writing & Editing - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Design & Layout - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Review & Finalization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring pseudo-elements for editorial benefit and process cards */
.benefits-section .benefit-item.progress-ring::before,
.process-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.benefits-section .benefit-item.progress-ring::after,
.process-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Second bar going in opposite direction for editorial benefit and process cards with different color */
.benefits-section .benefit-item.progress-ring::before,
.process-section .benefit-item.progress-ring::before {
    background:
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            color-mix(in oklab, var(--accent-2, #00E5FF) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent-2, #00E5FF) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent-2, #00E5FF) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    animation: pr-scan-reverse 2.8s linear infinite;
}

/* Single bar progress ring for CRM service cards */

/* Light theme: white border for CRM service cards */
body.light-theme .services-overview .crm-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM service card */
.services-overview .crm-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Custom CRM Development - Red */
.services-overview .crm-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* CRM Integration - Teal */
.services-overview .crm-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Data Analytics & Reporting - Yellow */
.services-overview .crm-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Mobile CRM Solutions - Purple */
.services-overview .crm-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Security & Compliance - Cyan */
.services-overview .crm-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Training & Support - Pink */

/* Single bar progress ring pseudo-elements for CRM service cards */
.services-overview .crm-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.services-overview .crm-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM feature cards */

/* Light theme: white border for CRM feature cards */
body.light-theme .features-section .feature-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM feature card */
.features-section .feature-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Contact Management - Red */
.features-section .feature-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Sales Pipeline - Teal */
.features-section .feature-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Email Marketing - Yellow */
.features-section .feature-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Communication Hub - Purple */
.features-section .feature-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Task Management - Cyan */
.features-section .feature-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Automated Notifications - Pink */

/* Single bar progress ring pseudo-elements for CRM feature cards */
.features-section .feature-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.features-section .feature-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM industry cards */

/* Light theme: white border for CRM industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Retail & E-commerce - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Financial Services - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real Estate - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Education - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Manufacturing - Pink */

/* Single bar progress ring pseudo-elements for CRM industry cards */
.industries-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.industries-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Second bar going in opposite direction for strategy cards with different color */
.strategy-card.progress-ring::before {
    background:
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            color-mix(in oklab, var(--accent-2, #00E5FF) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent-2, #00E5FF) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent-2, #00E5FF) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    animation: pr-scan-reverse 2.8s linear infinite;
}

/* Single bar progress ring for CRM service cards */

/* Light theme: white border for CRM service cards */
body.light-theme .services-overview .crm-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM service card */
.services-overview .crm-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Custom CRM Development - Red */
.services-overview .crm-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* CRM Integration - Teal */
.services-overview .crm-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Data Analytics & Reporting - Yellow */
.services-overview .crm-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Mobile CRM Solutions - Purple */
.services-overview .crm-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Security & Compliance - Cyan */
.services-overview .crm-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Training & Support - Pink */

/* Single bar progress ring pseudo-elements for CRM service cards */
.services-overview .crm-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.services-overview .crm-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM feature cards */

/* Light theme: white border for CRM feature cards */
body.light-theme .features-section .feature-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM feature card */
.features-section .feature-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Contact Management - Red */
.features-section .feature-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Sales Pipeline - Teal */
.features-section .feature-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Email Marketing - Yellow */
.features-section .feature-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Communication Hub - Purple */
.features-section .feature-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Task Management - Cyan */
.features-section .feature-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Automated Notifications - Pink */

/* Single bar progress ring pseudo-elements for CRM feature cards */
.features-section .feature-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.features-section .feature-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM industry cards */

/* Light theme: white border for CRM industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Retail & E-commerce - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Financial Services - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real Estate - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Education - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Manufacturing - Pink */

/* Single bar progress ring pseudo-elements for CRM industry cards */
.industries-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.industries-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Progress ring border effect for editorial service cards */


/* Light theme: white border for editorial service cards */
body.light-theme .services-overview .editorial-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each editorial service card */
.services-overview .editorial-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Content Writing - Red */
.services-overview .editorial-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Copywriting - Teal */
.services-overview .editorial-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Publication Design - Yellow */
.services-overview .editorial-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Graphic Editorial Design - Purple */
.services-overview .editorial-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Book Publishing - Cyan */
.services-overview .editorial-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Technical Writing - Pink */

/* Single bar progress ring pseudo-elements for editorial service cards */
.services-overview .editorial-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.services-overview .editorial-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for editorial publication types cards */

/* Light theme: white border for editorial publication cards */
body.light-theme .publication-types-section .publication-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each editorial publication card */
.publication-types-section .publication-card.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Magazines & Newsletters - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.publication-types-section .publication-card.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Books & E-books - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.publication-types-section .publication-card.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Reports & Whitepapers - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.publication-types-section .publication-card.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Brochures & Catalogs - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring pseudo-elements for editorial publication cards */
.publication-types-section .publication-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.publication-types-section .publication-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Second bar going in opposite direction for editorial publication cards with different color */
.publication-types-section .publication-card.progress-ring::before {
    background:
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            color-mix(in oklab, var(--accent-2, #00E5FF) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent-2, #00E5FF) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent-2, #00E5FF) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    animation: pr-scan-reverse 2.8s linear infinite;
}

/* Single bar progress ring for CRM service cards */

/* Light theme: white border for CRM service cards */
body.light-theme .services-overview .crm-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM service card */
.services-overview .crm-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Custom CRM Development - Red */
.services-overview .crm-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* CRM Integration - Teal */
.services-overview .crm-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Data Analytics & Reporting - Yellow */
.services-overview .crm-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Mobile CRM Solutions - Purple */
.services-overview .crm-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Security & Compliance - Cyan */
.services-overview .crm-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Training & Support - Pink */

/* Single bar progress ring pseudo-elements for CRM service cards */
.services-overview .crm-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.services-overview .crm-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM feature cards */

/* Light theme: white border for CRM feature cards */
body.light-theme .features-section .feature-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM feature card */
.features-section .feature-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Contact Management - Red */
.features-section .feature-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Sales Pipeline - Teal */
.features-section .feature-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Email Marketing - Yellow */
.features-section .feature-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Communication Hub - Purple */
.features-section .feature-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Task Management - Cyan */
.features-section .feature-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Automated Notifications - Pink */

/* Single bar progress ring pseudo-elements for CRM feature cards */
.features-section .feature-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.features-section .feature-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM industry cards */

/* Light theme: white border for CRM industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Retail & E-commerce - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Financial Services - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real Estate - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Education - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Manufacturing - Pink */

/* Single bar progress ring pseudo-elements for CRM industry cards */
.industries-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.industries-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for editorial benefits and process cards */

/* Light theme: white border for editorial benefit and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each editorial benefit card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Strategic Content - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Design Excellence - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Fast Turnaround - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Attention to Detail - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each editorial process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Content Strategy - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Writing & Editing - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Design & Layout - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Review & Finalization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring pseudo-elements for editorial benefit and process cards */
.benefits-section .benefit-item.progress-ring::before,
.process-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.benefits-section .benefit-item.progress-ring::after,
.process-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Second bar going in opposite direction for editorial benefit and process cards with different color */
.benefits-section .benefit-item.progress-ring::before,
.process-section .benefit-item.progress-ring::before {
    background:
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            color-mix(in oklab, var(--accent-2, #00E5FF) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent-2, #00E5FF) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent-2, #00E5FF) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    animation: pr-scan-reverse 2.8s linear infinite;
}

/* Single bar progress ring for CRM service cards */

/* Light theme: white border for CRM service cards */
body.light-theme .services-overview .crm-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM service card */
.services-overview .crm-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Custom CRM Development - Red */
.services-overview .crm-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* CRM Integration - Teal */
.services-overview .crm-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Data Analytics & Reporting - Yellow */
.services-overview .crm-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Mobile CRM Solutions - Purple */
.services-overview .crm-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Security & Compliance - Cyan */
.services-overview .crm-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Training & Support - Pink */

/* Single bar progress ring pseudo-elements for CRM service cards */
.services-overview .crm-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.services-overview .crm-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM feature cards */

/* Light theme: white border for CRM feature cards */
body.light-theme .features-section .feature-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM feature card */
.features-section .feature-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Contact Management - Red */
.features-section .feature-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Sales Pipeline - Teal */
.features-section .feature-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Email Marketing - Yellow */
.features-section .feature-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Communication Hub - Purple */
.features-section .feature-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Task Management - Cyan */
.features-section .feature-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Automated Notifications - Pink */

/* Single bar progress ring pseudo-elements for CRM feature cards */
.features-section .feature-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.features-section .feature-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM industry cards */

/* Light theme: white border for CRM industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Retail & E-commerce - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Financial Services - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real Estate - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Education - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Manufacturing - Pink */

/* Single bar progress ring pseudo-elements for CRM industry cards */
.industries-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.industries-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Progress ring border effect for editorial expertise cards */


/* Light theme: white border for editorial expertise cards */
body.light-theme .expertise-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each editorial expertise card */
.expertise-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Academic Writing - Red */
.expertise-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Business Content - Teal */
.expertise-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Creative Writing - Yellow */
.expertise-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Technical Documentation - Purple */
.expertise-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Marketing Content - Cyan */
.expertise-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Digital Publishing - Pink */

/* Single bar progress ring pseudo-elements for editorial expertise cards */
.expertise-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.expertise-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for editorial publication types cards */

/* Light theme: white border for editorial publication cards */
body.light-theme .publication-types-section .publication-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each editorial publication card */
.publication-types-section .publication-card.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Magazines & Newsletters - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.publication-types-section .publication-card.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Books & E-books - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.publication-types-section .publication-card.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Reports & Whitepapers - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.publication-types-section .publication-card.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Brochures & Catalogs - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring pseudo-elements for editorial publication cards */
.publication-types-section .publication-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.publication-types-section .publication-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Second bar going in opposite direction for editorial publication cards with different color */
.publication-types-section .publication-card.progress-ring::before {
    background:
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            color-mix(in oklab, var(--accent-2, #00E5FF) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent-2, #00E5FF) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent-2, #00E5FF) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    animation: pr-scan-reverse 2.8s linear infinite;
}

/* Single bar progress ring for CRM service cards */

/* Light theme: white border for CRM service cards */
body.light-theme .services-overview .crm-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM service card */
.services-overview .crm-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Custom CRM Development - Red */
.services-overview .crm-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* CRM Integration - Teal */
.services-overview .crm-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Data Analytics & Reporting - Yellow */
.services-overview .crm-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Mobile CRM Solutions - Purple */
.services-overview .crm-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Security & Compliance - Cyan */
.services-overview .crm-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Training & Support - Pink */

/* Single bar progress ring pseudo-elements for CRM service cards */
.services-overview .crm-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.services-overview .crm-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM feature cards */

/* Light theme: white border for CRM feature cards */
body.light-theme .features-section .feature-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM feature card */
.features-section .feature-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Contact Management - Red */
.features-section .feature-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Sales Pipeline - Teal */
.features-section .feature-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Email Marketing - Yellow */
.features-section .feature-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Communication Hub - Purple */
.features-section .feature-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Task Management - Cyan */
.features-section .feature-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Automated Notifications - Pink */

/* Single bar progress ring pseudo-elements for CRM feature cards */
.features-section .feature-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.features-section .feature-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM industry cards */

/* Light theme: white border for CRM industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Retail & E-commerce - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Financial Services - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real Estate - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Education - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Manufacturing - Pink */

/* Single bar progress ring pseudo-elements for CRM industry cards */
.industries-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.industries-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for editorial benefits and process cards */

/* Light theme: white border for editorial benefit and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each editorial benefit card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Strategic Content - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Design Excellence - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Fast Turnaround - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Attention to Detail - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each editorial process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Content Strategy - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Writing & Editing - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Design & Layout - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Review & Finalization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring pseudo-elements for editorial benefit and process cards */
.benefits-section .benefit-item.progress-ring::before,
.process-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.benefits-section .benefit-item.progress-ring::after,
.process-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Second bar going in opposite direction for editorial benefit and process cards with different color */
.benefits-section .benefit-item.progress-ring::before,
.process-section .benefit-item.progress-ring::before {
    background:
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            color-mix(in oklab, var(--accent-2, #00E5FF) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent-2, #00E5FF) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent-2, #00E5FF) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    animation: pr-scan-reverse 2.8s linear infinite;
}

/* Single bar progress ring for CRM service cards */

/* Light theme: white border for CRM service cards */
body.light-theme .services-overview .crm-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM service card */
.services-overview .crm-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Custom CRM Development - Red */
.services-overview .crm-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* CRM Integration - Teal */
.services-overview .crm-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Data Analytics & Reporting - Yellow */
.services-overview .crm-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Mobile CRM Solutions - Purple */
.services-overview .crm-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Security & Compliance - Cyan */
.services-overview .crm-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Training & Support - Pink */

/* Single bar progress ring pseudo-elements for CRM service cards */
.services-overview .crm-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.services-overview .crm-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM feature cards */

/* Light theme: white border for CRM feature cards */
body.light-theme .features-section .feature-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM feature card */
.features-section .feature-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Contact Management - Red */
.features-section .feature-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Sales Pipeline - Teal */
.features-section .feature-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Email Marketing - Yellow */
.features-section .feature-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Communication Hub - Purple */
.features-section .feature-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Task Management - Cyan */
.features-section .feature-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Automated Notifications - Pink */

/* Single bar progress ring pseudo-elements for CRM feature cards */
.features-section .feature-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.features-section .feature-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM industry cards */

/* Light theme: white border for CRM industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Retail & E-commerce - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Financial Services - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real Estate - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Education - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Manufacturing - Pink */

/* Single bar progress ring pseudo-elements for CRM industry cards */
.industries-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.industries-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Progress ring border effect for branding cards (mobile) */


/* Single bar progress ring for branding service cards (like Why Choose Sinsajo Creators) */


/* Light theme: white border for branding service cards */
body.light-theme .services-overview .branding-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each branding service card */
.services-overview .branding-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Brand Strategy - Red */
.services-overview .branding-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Naming, Claim, and Slogan - Teal */
.services-overview .branding-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Brand Creative Direction - Yellow */
.services-overview .branding-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Logo Design and Visual Identity - Purple */
.services-overview .branding-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Brand Applications - Cyan */
.services-overview .branding-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Brand Clarity - Pink */
.services-overview .branding-card.progress-ring:nth-child(7) { --accent: #FF6B6B; } /* Development of Brand Manual - Red */
.services-overview .branding-card.progress-ring:nth-child(8) { --accent: #4ECDC4; } /* Corporate Identity Redesign - Teal */

/* Single bar progress ring pseudo-elements for branding service cards */
.services-overview .branding-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.services-overview .branding-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for editorial publication types cards */

/* Light theme: white border for editorial publication cards */
body.light-theme .publication-types-section .publication-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each editorial publication card */
.publication-types-section .publication-card.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Magazines & Newsletters - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.publication-types-section .publication-card.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Books & E-books - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.publication-types-section .publication-card.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Reports & Whitepapers - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.publication-types-section .publication-card.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Brochures & Catalogs - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring pseudo-elements for editorial publication cards */
.publication-types-section .publication-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.publication-types-section .publication-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Second bar going in opposite direction for editorial publication cards with different color */
.publication-types-section .publication-card.progress-ring::before {
    background:
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            color-mix(in oklab, var(--accent-2, #00E5FF) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent-2, #00E5FF) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent-2, #00E5FF) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    animation: pr-scan-reverse 2.8s linear infinite;
}

/* Single bar progress ring for CRM service cards */

/* Light theme: white border for CRM service cards */
body.light-theme .services-overview .crm-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM service card */
.services-overview .crm-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Custom CRM Development - Red */
.services-overview .crm-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* CRM Integration - Teal */
.services-overview .crm-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Data Analytics & Reporting - Yellow */
.services-overview .crm-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Mobile CRM Solutions - Purple */
.services-overview .crm-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Security & Compliance - Cyan */
.services-overview .crm-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Training & Support - Pink */

/* Single bar progress ring pseudo-elements for CRM service cards */
.services-overview .crm-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.services-overview .crm-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM feature cards */

/* Light theme: white border for CRM feature cards */
body.light-theme .features-section .feature-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM feature card */
.features-section .feature-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Contact Management - Red */
.features-section .feature-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Sales Pipeline - Teal */
.features-section .feature-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Email Marketing - Yellow */
.features-section .feature-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Communication Hub - Purple */
.features-section .feature-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Task Management - Cyan */
.features-section .feature-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Automated Notifications - Pink */

/* Single bar progress ring pseudo-elements for CRM feature cards */
.features-section .feature-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.features-section .feature-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM industry cards */

/* Light theme: white border for CRM industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Retail & E-commerce - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Financial Services - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real Estate - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Education - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Manufacturing - Pink */

/* Single bar progress ring pseudo-elements for CRM industry cards */
.industries-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.industries-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for editorial benefits and process cards */

/* Light theme: white border for editorial benefit and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each editorial benefit card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Strategic Content - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Design Excellence - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Fast Turnaround - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Attention to Detail - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each editorial process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Content Strategy - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Writing & Editing - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Design & Layout - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Review & Finalization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring pseudo-elements for editorial benefit and process cards */
.benefits-section .benefit-item.progress-ring::before,
.process-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.benefits-section .benefit-item.progress-ring::after,
.process-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Second bar going in opposite direction for editorial benefit and process cards with different color */
.benefits-section .benefit-item.progress-ring::before,
.process-section .benefit-item.progress-ring::before {
    background:
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            color-mix(in oklab, var(--accent-2, #00E5FF) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent-2, #00E5FF) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent-2, #00E5FF) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    animation: pr-scan-reverse 2.8s linear infinite;
}

/* Single bar progress ring for CRM service cards */

/* Light theme: white border for CRM service cards */
body.light-theme .services-overview .crm-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM service card */
.services-overview .crm-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Custom CRM Development - Red */
.services-overview .crm-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* CRM Integration - Teal */
.services-overview .crm-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Data Analytics & Reporting - Yellow */
.services-overview .crm-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Mobile CRM Solutions - Purple */
.services-overview .crm-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Security & Compliance - Cyan */
.services-overview .crm-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Training & Support - Pink */

/* Single bar progress ring pseudo-elements for CRM service cards */
.services-overview .crm-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.services-overview .crm-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM feature cards */

/* Light theme: white border for CRM feature cards */
body.light-theme .features-section .feature-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM feature card */
.features-section .feature-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Contact Management - Red */
.features-section .feature-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Sales Pipeline - Teal */
.features-section .feature-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Email Marketing - Yellow */
.features-section .feature-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Communication Hub - Purple */
.features-section .feature-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Task Management - Cyan */
.features-section .feature-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Automated Notifications - Pink */

/* Single bar progress ring pseudo-elements for CRM feature cards */
.features-section .feature-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.features-section .feature-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM industry cards */

/* Light theme: white border for CRM industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Retail & E-commerce - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Financial Services - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real Estate - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Education - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Manufacturing - Pink */

/* Single bar progress ring pseudo-elements for CRM industry cards */
.industries-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.industries-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Light theme: white border for branding cards */
body.light-theme .branding-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each branding card */
.branding-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Launch - Red */
.branding-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Visibility - Teal */
.branding-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Trust - Yellow */
.branding-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Positioning - Purple */
.branding-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Expansion - Cyan */

/* Progress ring pseudo-elements for branding cards */
.branding-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.branding-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for editorial publication types cards */

/* Light theme: white border for editorial publication cards */
body.light-theme .publication-types-section .publication-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each editorial publication card */
.publication-types-section .publication-card.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Magazines & Newsletters - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.publication-types-section .publication-card.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Books & E-books - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.publication-types-section .publication-card.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Reports & Whitepapers - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.publication-types-section .publication-card.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Brochures & Catalogs - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring pseudo-elements for editorial publication cards */
.publication-types-section .publication-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.publication-types-section .publication-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Second bar going in opposite direction for editorial publication cards with different color */
.publication-types-section .publication-card.progress-ring::before {
    background:
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            color-mix(in oklab, var(--accent-2, #00E5FF) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent-2, #00E5FF) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent-2, #00E5FF) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    animation: pr-scan-reverse 2.8s linear infinite;
}

/* Single bar progress ring for CRM service cards */

/* Light theme: white border for CRM service cards */
body.light-theme .services-overview .crm-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM service card */
.services-overview .crm-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Custom CRM Development - Red */
.services-overview .crm-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* CRM Integration - Teal */
.services-overview .crm-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Data Analytics & Reporting - Yellow */
.services-overview .crm-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Mobile CRM Solutions - Purple */
.services-overview .crm-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Security & Compliance - Cyan */
.services-overview .crm-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Training & Support - Pink */

/* Single bar progress ring pseudo-elements for CRM service cards */
.services-overview .crm-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.services-overview .crm-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM feature cards */

/* Light theme: white border for CRM feature cards */
body.light-theme .features-section .feature-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM feature card */
.features-section .feature-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Contact Management - Red */
.features-section .feature-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Sales Pipeline - Teal */
.features-section .feature-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Email Marketing - Yellow */
.features-section .feature-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Communication Hub - Purple */
.features-section .feature-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Task Management - Cyan */
.features-section .feature-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Automated Notifications - Pink */

/* Single bar progress ring pseudo-elements for CRM feature cards */
.features-section .feature-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.features-section .feature-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM industry cards */

/* Light theme: white border for CRM industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Retail & E-commerce - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Financial Services - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real Estate - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Education - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Manufacturing - Pink */

/* Single bar progress ring pseudo-elements for CRM industry cards */
.industries-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.industries-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for editorial benefits and process cards */

/* Light theme: white border for editorial benefit and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each editorial benefit card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Strategic Content - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Design Excellence - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Fast Turnaround - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Attention to Detail - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each editorial process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Content Strategy - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Writing & Editing - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Design & Layout - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Review & Finalization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring pseudo-elements for editorial benefit and process cards */
.benefits-section .benefit-item.progress-ring::before,
.process-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.benefits-section .benefit-item.progress-ring::after,
.process-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Second bar going in opposite direction for editorial benefit and process cards with different color */
.benefits-section .benefit-item.progress-ring::before,
.process-section .benefit-item.progress-ring::before {
    background:
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            color-mix(in oklab, var(--accent-2, #00E5FF) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent-2, #00E5FF) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent-2, #00E5FF) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    animation: pr-scan-reverse 2.8s linear infinite;
}

/* Single bar progress ring for CRM service cards */

/* Light theme: white border for CRM service cards */
body.light-theme .services-overview .crm-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM service card */
.services-overview .crm-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Custom CRM Development - Red */
.services-overview .crm-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* CRM Integration - Teal */
.services-overview .crm-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Data Analytics & Reporting - Yellow */
.services-overview .crm-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Mobile CRM Solutions - Purple */
.services-overview .crm-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Security & Compliance - Cyan */
.services-overview .crm-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Training & Support - Pink */

/* Single bar progress ring pseudo-elements for CRM service cards */
.services-overview .crm-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.services-overview .crm-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM feature cards */

/* Light theme: white border for CRM feature cards */
body.light-theme .features-section .feature-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM feature card */
.features-section .feature-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Contact Management - Red */
.features-section .feature-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Sales Pipeline - Teal */
.features-section .feature-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Email Marketing - Yellow */
.features-section .feature-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Communication Hub - Purple */
.features-section .feature-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Task Management - Cyan */
.features-section .feature-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Automated Notifications - Pink */

/* Single bar progress ring pseudo-elements for CRM feature cards */
.features-section .feature-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.features-section .feature-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM industry cards */

/* Light theme: white border for CRM industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Retail & E-commerce - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Financial Services - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real Estate - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Education - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Manufacturing - Pink */

/* Single bar progress ring pseudo-elements for CRM industry cards */
.industries-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.industries-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Progress ring border effect for benefit items - dual direction bars */


/* Light theme: white border for benefit items */
body.light-theme .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each benefit item */
.benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Data-Driven Approach - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Creative Excellence - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Timely Execution - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Continuous Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring pseudo-elements for benefit items */
.benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for editorial publication types cards */

/* Light theme: white border for editorial publication cards */
body.light-theme .publication-types-section .publication-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each editorial publication card */
.publication-types-section .publication-card.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Magazines & Newsletters - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.publication-types-section .publication-card.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Books & E-books - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.publication-types-section .publication-card.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Reports & Whitepapers - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.publication-types-section .publication-card.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Brochures & Catalogs - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring pseudo-elements for editorial publication cards */
.publication-types-section .publication-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.publication-types-section .publication-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Second bar going in opposite direction for editorial publication cards with different color */
.publication-types-section .publication-card.progress-ring::before {
    background:
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            color-mix(in oklab, var(--accent-2, #00E5FF) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent-2, #00E5FF) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent-2, #00E5FF) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    animation: pr-scan-reverse 2.8s linear infinite;
}

/* Single bar progress ring for CRM service cards */

/* Light theme: white border for CRM service cards */
body.light-theme .services-overview .crm-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM service card */
.services-overview .crm-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Custom CRM Development - Red */
.services-overview .crm-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* CRM Integration - Teal */
.services-overview .crm-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Data Analytics & Reporting - Yellow */
.services-overview .crm-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Mobile CRM Solutions - Purple */
.services-overview .crm-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Security & Compliance - Cyan */
.services-overview .crm-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Training & Support - Pink */

/* Single bar progress ring pseudo-elements for CRM service cards */
.services-overview .crm-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.services-overview .crm-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM feature cards */

/* Light theme: white border for CRM feature cards */
body.light-theme .features-section .feature-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM feature card */
.features-section .feature-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Contact Management - Red */
.features-section .feature-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Sales Pipeline - Teal */
.features-section .feature-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Email Marketing - Yellow */
.features-section .feature-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Communication Hub - Purple */
.features-section .feature-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Task Management - Cyan */
.features-section .feature-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Automated Notifications - Pink */

/* Single bar progress ring pseudo-elements for CRM feature cards */
.features-section .feature-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.features-section .feature-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM industry cards */

/* Light theme: white border for CRM industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Retail & E-commerce - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Financial Services - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real Estate - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Education - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Manufacturing - Pink */

/* Single bar progress ring pseudo-elements for CRM industry cards */
.industries-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.industries-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for editorial benefits and process cards */

/* Light theme: white border for editorial benefit and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each editorial benefit card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Strategic Content - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Design Excellence - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Fast Turnaround - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Attention to Detail - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each editorial process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Content Strategy - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Writing & Editing - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Design & Layout - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Review & Finalization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring pseudo-elements for editorial benefit and process cards */
.benefits-section .benefit-item.progress-ring::before,
.process-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.benefits-section .benefit-item.progress-ring::after,
.process-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Second bar going in opposite direction for editorial benefit and process cards with different color */
.benefits-section .benefit-item.progress-ring::before,
.process-section .benefit-item.progress-ring::before {
    background:
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            color-mix(in oklab, var(--accent-2, #00E5FF) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent-2, #00E5FF) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent-2, #00E5FF) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    animation: pr-scan-reverse 2.8s linear infinite;
}

/* Single bar progress ring for CRM service cards */

/* Light theme: white border for CRM service cards */
body.light-theme .services-overview .crm-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM service card */
.services-overview .crm-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Custom CRM Development - Red */
.services-overview .crm-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* CRM Integration - Teal */
.services-overview .crm-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Data Analytics & Reporting - Yellow */
.services-overview .crm-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Mobile CRM Solutions - Purple */
.services-overview .crm-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Security & Compliance - Cyan */
.services-overview .crm-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Training & Support - Pink */

/* Single bar progress ring pseudo-elements for CRM service cards */
.services-overview .crm-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.services-overview .crm-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM feature cards */

/* Light theme: white border for CRM feature cards */
body.light-theme .features-section .feature-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM feature card */
.features-section .feature-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Contact Management - Red */
.features-section .feature-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Sales Pipeline - Teal */
.features-section .feature-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Email Marketing - Yellow */
.features-section .feature-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Communication Hub - Purple */
.features-section .feature-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Task Management - Cyan */
.features-section .feature-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Automated Notifications - Pink */

/* Single bar progress ring pseudo-elements for CRM feature cards */
.features-section .feature-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.features-section .feature-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM industry cards */

/* Light theme: white border for CRM industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Retail & E-commerce - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Financial Services - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real Estate - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Education - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Manufacturing - Pink */

/* Single bar progress ring pseudo-elements for CRM industry cards */
.industries-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.industries-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Second bar going in opposite direction with different color */
.benefit-item.progress-ring::before {
    background:
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            color-mix(in oklab, var(--accent-2, #00E5FF) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent-2, #00E5FF) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent-2, #00E5FF) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    animation: pr-scan-reverse 2.8s linear infinite;
}

/* Single bar progress ring for CRM service cards */

/* Light theme: white border for CRM service cards */
body.light-theme .services-overview .crm-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM service card */
.services-overview .crm-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Custom CRM Development - Red */
.services-overview .crm-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* CRM Integration - Teal */
.services-overview .crm-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Data Analytics & Reporting - Yellow */
.services-overview .crm-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Mobile CRM Solutions - Purple */
.services-overview .crm-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Security & Compliance - Cyan */
.services-overview .crm-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Training & Support - Pink */

/* Single bar progress ring pseudo-elements for CRM service cards */
.services-overview .crm-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.services-overview .crm-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM feature cards */

/* Light theme: white border for CRM feature cards */
body.light-theme .features-section .feature-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM feature card */
.features-section .feature-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Contact Management - Red */
.features-section .feature-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Sales Pipeline - Teal */
.features-section .feature-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Email Marketing - Yellow */
.features-section .feature-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Communication Hub - Purple */
.features-section .feature-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Task Management - Cyan */
.features-section .feature-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Automated Notifications - Pink */

/* Single bar progress ring pseudo-elements for CRM feature cards */
.features-section .feature-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.features-section .feature-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM industry cards */

/* Light theme: white border for CRM industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Retail & E-commerce - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Financial Services - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real Estate - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Education - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Manufacturing - Pink */

/* Single bar progress ring pseudo-elements for CRM industry cards */
.industries-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.industries-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Progress ring border effect for editorial service cards */


/* Light theme: white border for editorial service cards */
body.light-theme .services-overview .editorial-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each editorial service card */
.services-overview .editorial-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Content Writing - Red */
.services-overview .editorial-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Copywriting - Teal */
.services-overview .editorial-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Publication Design - Yellow */
.services-overview .editorial-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Graphic Editorial Design - Purple */
.services-overview .editorial-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Book Publishing - Cyan */
.services-overview .editorial-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Technical Writing - Pink */

/* Single bar progress ring pseudo-elements for editorial service cards */
.services-overview .editorial-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.services-overview .editorial-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for editorial publication types cards */

/* Light theme: white border for editorial publication cards */
body.light-theme .publication-types-section .publication-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each editorial publication card */
.publication-types-section .publication-card.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Magazines & Newsletters - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.publication-types-section .publication-card.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Books & E-books - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.publication-types-section .publication-card.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Reports & Whitepapers - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.publication-types-section .publication-card.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Brochures & Catalogs - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring pseudo-elements for editorial publication cards */
.publication-types-section .publication-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.publication-types-section .publication-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Second bar going in opposite direction for editorial publication cards with different color */
.publication-types-section .publication-card.progress-ring::before {
    background:
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            color-mix(in oklab, var(--accent-2, #00E5FF) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent-2, #00E5FF) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent-2, #00E5FF) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    animation: pr-scan-reverse 2.8s linear infinite;
}

/* Single bar progress ring for CRM service cards */

/* Light theme: white border for CRM service cards */
body.light-theme .services-overview .crm-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM service card */
.services-overview .crm-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Custom CRM Development - Red */
.services-overview .crm-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* CRM Integration - Teal */
.services-overview .crm-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Data Analytics & Reporting - Yellow */
.services-overview .crm-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Mobile CRM Solutions - Purple */
.services-overview .crm-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Security & Compliance - Cyan */
.services-overview .crm-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Training & Support - Pink */

/* Single bar progress ring pseudo-elements for CRM service cards */
.services-overview .crm-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.services-overview .crm-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM feature cards */

/* Light theme: white border for CRM feature cards */
body.light-theme .features-section .feature-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM feature card */
.features-section .feature-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Contact Management - Red */
.features-section .feature-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Sales Pipeline - Teal */
.features-section .feature-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Email Marketing - Yellow */
.features-section .feature-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Communication Hub - Purple */
.features-section .feature-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Task Management - Cyan */
.features-section .feature-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Automated Notifications - Pink */

/* Single bar progress ring pseudo-elements for CRM feature cards */
.features-section .feature-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.features-section .feature-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM industry cards */

/* Light theme: white border for CRM industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Retail & E-commerce - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Financial Services - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real Estate - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Education - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Manufacturing - Pink */

/* Single bar progress ring pseudo-elements for CRM industry cards */
.industries-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.industries-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for editorial benefits and process cards */

/* Light theme: white border for editorial benefit and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each editorial benefit card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Strategic Content - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Design Excellence - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Fast Turnaround - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Attention to Detail - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each editorial process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Content Strategy - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Writing & Editing - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Design & Layout - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Review & Finalization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring pseudo-elements for editorial benefit and process cards */
.benefits-section .benefit-item.progress-ring::before,
.process-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.benefits-section .benefit-item.progress-ring::after,
.process-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Second bar going in opposite direction for editorial benefit and process cards with different color */
.benefits-section .benefit-item.progress-ring::before,
.process-section .benefit-item.progress-ring::before {
    background:
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            color-mix(in oklab, var(--accent-2, #00E5FF) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent-2, #00E5FF) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent-2, #00E5FF) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    animation: pr-scan-reverse 2.8s linear infinite;
}

/* Single bar progress ring for CRM service cards */

/* Light theme: white border for CRM service cards */
body.light-theme .services-overview .crm-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM service card */
.services-overview .crm-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Custom CRM Development - Red */
.services-overview .crm-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* CRM Integration - Teal */
.services-overview .crm-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Data Analytics & Reporting - Yellow */
.services-overview .crm-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Mobile CRM Solutions - Purple */
.services-overview .crm-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Security & Compliance - Cyan */
.services-overview .crm-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Training & Support - Pink */

/* Single bar progress ring pseudo-elements for CRM service cards */
.services-overview .crm-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.services-overview .crm-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM feature cards */

/* Light theme: white border for CRM feature cards */
body.light-theme .features-section .feature-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM feature card */
.features-section .feature-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Contact Management - Red */
.features-section .feature-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Sales Pipeline - Teal */
.features-section .feature-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Email Marketing - Yellow */
.features-section .feature-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Communication Hub - Purple */
.features-section .feature-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Task Management - Cyan */
.features-section .feature-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Automated Notifications - Pink */

/* Single bar progress ring pseudo-elements for CRM feature cards */
.features-section .feature-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.features-section .feature-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM industry cards */

/* Light theme: white border for CRM industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Retail & E-commerce - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Financial Services - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real Estate - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Education - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Manufacturing - Pink */

/* Single bar progress ring pseudo-elements for CRM industry cards */
.industries-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.industries-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Progress ring border effect for editorial expertise cards */


/* Light theme: white border for editorial expertise cards */
body.light-theme .expertise-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each editorial expertise card */
.expertise-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Academic Writing - Red */
.expertise-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Business Content - Teal */
.expertise-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Creative Writing - Yellow */
.expertise-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Technical Documentation - Purple */
.expertise-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Marketing Content - Cyan */
.expertise-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Digital Publishing - Pink */

/* Single bar progress ring pseudo-elements for editorial expertise cards */
.expertise-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.expertise-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for editorial publication types cards */

/* Light theme: white border for editorial publication cards */
body.light-theme .publication-types-section .publication-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each editorial publication card */
.publication-types-section .publication-card.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Magazines & Newsletters - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.publication-types-section .publication-card.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Books & E-books - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.publication-types-section .publication-card.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Reports & Whitepapers - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.publication-types-section .publication-card.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Brochures & Catalogs - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring pseudo-elements for editorial publication cards */
.publication-types-section .publication-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.publication-types-section .publication-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Second bar going in opposite direction for editorial publication cards with different color */
.publication-types-section .publication-card.progress-ring::before {
    background:
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            color-mix(in oklab, var(--accent-2, #00E5FF) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent-2, #00E5FF) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent-2, #00E5FF) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    animation: pr-scan-reverse 2.8s linear infinite;
}

/* Single bar progress ring for CRM service cards */

/* Light theme: white border for CRM service cards */
body.light-theme .services-overview .crm-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM service card */
.services-overview .crm-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Custom CRM Development - Red */
.services-overview .crm-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* CRM Integration - Teal */
.services-overview .crm-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Data Analytics & Reporting - Yellow */
.services-overview .crm-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Mobile CRM Solutions - Purple */
.services-overview .crm-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Security & Compliance - Cyan */
.services-overview .crm-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Training & Support - Pink */

/* Single bar progress ring pseudo-elements for CRM service cards */
.services-overview .crm-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.services-overview .crm-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM feature cards */

/* Light theme: white border for CRM feature cards */
body.light-theme .features-section .feature-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM feature card */
.features-section .feature-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Contact Management - Red */
.features-section .feature-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Sales Pipeline - Teal */
.features-section .feature-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Email Marketing - Yellow */
.features-section .feature-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Communication Hub - Purple */
.features-section .feature-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Task Management - Cyan */
.features-section .feature-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Automated Notifications - Pink */

/* Single bar progress ring pseudo-elements for CRM feature cards */
.features-section .feature-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.features-section .feature-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM industry cards */

/* Light theme: white border for CRM industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Retail & E-commerce - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Financial Services - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real Estate - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Education - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Manufacturing - Pink */

/* Single bar progress ring pseudo-elements for CRM industry cards */
.industries-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.industries-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for editorial benefits and process cards */

/* Light theme: white border for editorial benefit and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each editorial benefit card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Strategic Content - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Design Excellence - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Fast Turnaround - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Attention to Detail - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each editorial process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Content Strategy - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Writing & Editing - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Design & Layout - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Review & Finalization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring pseudo-elements for editorial benefit and process cards */
.benefits-section .benefit-item.progress-ring::before,
.process-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.benefits-section .benefit-item.progress-ring::after,
.process-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Second bar going in opposite direction for editorial benefit and process cards with different color */
.benefits-section .benefit-item.progress-ring::before,
.process-section .benefit-item.progress-ring::before {
    background:
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            color-mix(in oklab, var(--accent-2, #00E5FF) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent-2, #00E5FF) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent-2, #00E5FF) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    animation: pr-scan-reverse 2.8s linear infinite;
}

/* Single bar progress ring for CRM service cards */

/* Light theme: white border for CRM service cards */
body.light-theme .services-overview .crm-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM service card */
.services-overview .crm-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Custom CRM Development - Red */
.services-overview .crm-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* CRM Integration - Teal */
.services-overview .crm-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Data Analytics & Reporting - Yellow */
.services-overview .crm-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Mobile CRM Solutions - Purple */
.services-overview .crm-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Security & Compliance - Cyan */
.services-overview .crm-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Training & Support - Pink */

/* Single bar progress ring pseudo-elements for CRM service cards */
.services-overview .crm-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.services-overview .crm-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM feature cards */

/* Light theme: white border for CRM feature cards */
body.light-theme .features-section .feature-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM feature card */
.features-section .feature-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Contact Management - Red */
.features-section .feature-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Sales Pipeline - Teal */
.features-section .feature-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Email Marketing - Yellow */
.features-section .feature-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Communication Hub - Purple */
.features-section .feature-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Task Management - Cyan */
.features-section .feature-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Automated Notifications - Pink */

/* Single bar progress ring pseudo-elements for CRM feature cards */
.features-section .feature-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.features-section .feature-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM industry cards */

/* Light theme: white border for CRM industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Retail & E-commerce - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Financial Services - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real Estate - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Education - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Manufacturing - Pink */

/* Single bar progress ring pseudo-elements for CRM industry cards */
.industries-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.industries-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Reverse animation for the second bar */
@keyframes pr-scan-reverse {
    to { --s: calc(360deg + 180deg); }
}

/* Progress ring border effect for branding cards (mobile) - dual direction bars */


/* Light theme: white border for branding cards */
body.light-theme .branding-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each branding card */
.branding-card.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Data-Driven Approach - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.branding-card.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Creative Excellence - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.branding-card.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Timely Execution - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.branding-card.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Continuous Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring pseudo-elements for branding cards */
.branding-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.branding-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for editorial publication types cards */

/* Light theme: white border for editorial publication cards */
body.light-theme .publication-types-section .publication-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each editorial publication card */
.publication-types-section .publication-card.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Magazines & Newsletters - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.publication-types-section .publication-card.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Books & E-books - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.publication-types-section .publication-card.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Reports & Whitepapers - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.publication-types-section .publication-card.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Brochures & Catalogs - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring pseudo-elements for editorial publication cards */
.publication-types-section .publication-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.publication-types-section .publication-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Second bar going in opposite direction for editorial publication cards with different color */
.publication-types-section .publication-card.progress-ring::before {
    background:
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            color-mix(in oklab, var(--accent-2, #00E5FF) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent-2, #00E5FF) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent-2, #00E5FF) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    animation: pr-scan-reverse 2.8s linear infinite;
}

/* Single bar progress ring for CRM service cards */

/* Light theme: white border for CRM service cards */
body.light-theme .services-overview .crm-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM service card */
.services-overview .crm-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Custom CRM Development - Red */
.services-overview .crm-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* CRM Integration - Teal */
.services-overview .crm-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Data Analytics & Reporting - Yellow */
.services-overview .crm-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Mobile CRM Solutions - Purple */
.services-overview .crm-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Security & Compliance - Cyan */
.services-overview .crm-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Training & Support - Pink */

/* Single bar progress ring pseudo-elements for CRM service cards */
.services-overview .crm-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.services-overview .crm-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM feature cards */

/* Light theme: white border for CRM feature cards */
body.light-theme .features-section .feature-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM feature card */
.features-section .feature-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Contact Management - Red */
.features-section .feature-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Sales Pipeline - Teal */
.features-section .feature-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Email Marketing - Yellow */
.features-section .feature-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Communication Hub - Purple */
.features-section .feature-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Task Management - Cyan */
.features-section .feature-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Automated Notifications - Pink */

/* Single bar progress ring pseudo-elements for CRM feature cards */
.features-section .feature-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.features-section .feature-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM industry cards */

/* Light theme: white border for CRM industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Retail & E-commerce - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Financial Services - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real Estate - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Education - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Manufacturing - Pink */

/* Single bar progress ring pseudo-elements for CRM industry cards */
.industries-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.industries-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for editorial benefits and process cards */

/* Light theme: white border for editorial benefit and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each editorial benefit card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Strategic Content - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Design Excellence - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Fast Turnaround - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Attention to Detail - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each editorial process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Content Strategy - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Writing & Editing - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Design & Layout - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Review & Finalization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring pseudo-elements for editorial benefit and process cards */
.benefits-section .benefit-item.progress-ring::before,
.process-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.benefits-section .benefit-item.progress-ring::after,
.process-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Second bar going in opposite direction for editorial benefit and process cards with different color */
.benefits-section .benefit-item.progress-ring::before,
.process-section .benefit-item.progress-ring::before {
    background:
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            color-mix(in oklab, var(--accent-2, #00E5FF) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent-2, #00E5FF) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent-2, #00E5FF) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    animation: pr-scan-reverse 2.8s linear infinite;
}

/* Single bar progress ring for CRM service cards */

/* Light theme: white border for CRM service cards */
body.light-theme .services-overview .crm-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM service card */
.services-overview .crm-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Custom CRM Development - Red */
.services-overview .crm-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* CRM Integration - Teal */
.services-overview .crm-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Data Analytics & Reporting - Yellow */
.services-overview .crm-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Mobile CRM Solutions - Purple */
.services-overview .crm-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Security & Compliance - Cyan */
.services-overview .crm-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Training & Support - Pink */

/* Single bar progress ring pseudo-elements for CRM service cards */
.services-overview .crm-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.services-overview .crm-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM feature cards */

/* Light theme: white border for CRM feature cards */
body.light-theme .features-section .feature-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM feature card */
.features-section .feature-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Contact Management - Red */
.features-section .feature-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Sales Pipeline - Teal */
.features-section .feature-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Email Marketing - Yellow */
.features-section .feature-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Communication Hub - Purple */
.features-section .feature-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Task Management - Cyan */
.features-section .feature-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Automated Notifications - Pink */

/* Single bar progress ring pseudo-elements for CRM feature cards */
.features-section .feature-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.features-section .feature-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM industry cards */

/* Light theme: white border for CRM industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Retail & E-commerce - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Financial Services - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real Estate - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Education - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Manufacturing - Pink */

/* Single bar progress ring pseudo-elements for CRM industry cards */
.industries-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.industries-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Second bar going in opposite direction for branding cards with different color */
.branding-card.progress-ring::before {
    background:
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            color-mix(in oklab, var(--accent-2, #00E5FF) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent-2, #00E5FF) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent-2, #00E5FF) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    animation: pr-scan-reverse 2.8s linear infinite;
}

/* Single bar progress ring for CRM service cards */

/* Light theme: white border for CRM service cards */
body.light-theme .services-overview .crm-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM service card */
.services-overview .crm-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Custom CRM Development - Red */
.services-overview .crm-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* CRM Integration - Teal */
.services-overview .crm-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Data Analytics & Reporting - Yellow */
.services-overview .crm-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Mobile CRM Solutions - Purple */
.services-overview .crm-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Security & Compliance - Cyan */
.services-overview .crm-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Training & Support - Pink */

/* Single bar progress ring pseudo-elements for CRM service cards */
.services-overview .crm-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.services-overview .crm-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM feature cards */

/* Light theme: white border for CRM feature cards */
body.light-theme .features-section .feature-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM feature card */
.features-section .feature-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Contact Management - Red */
.features-section .feature-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Sales Pipeline - Teal */
.features-section .feature-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Email Marketing - Yellow */
.features-section .feature-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Communication Hub - Purple */
.features-section .feature-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Task Management - Cyan */
.features-section .feature-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Automated Notifications - Pink */

/* Single bar progress ring pseudo-elements for CRM feature cards */
.features-section .feature-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.features-section .feature-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM industry cards */

/* Light theme: white border for CRM industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Retail & E-commerce - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Financial Services - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real Estate - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Education - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Manufacturing - Pink */

/* Single bar progress ring pseudo-elements for CRM industry cards */
.industries-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.industries-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Progress ring border effect for editorial service cards */


/* Light theme: white border for editorial service cards */
body.light-theme .services-overview .editorial-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each editorial service card */
.services-overview .editorial-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Content Writing - Red */
.services-overview .editorial-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Copywriting - Teal */
.services-overview .editorial-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Publication Design - Yellow */
.services-overview .editorial-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Graphic Editorial Design - Purple */
.services-overview .editorial-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Book Publishing - Cyan */
.services-overview .editorial-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Technical Writing - Pink */

/* Single bar progress ring pseudo-elements for editorial service cards */
.services-overview .editorial-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.services-overview .editorial-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for editorial publication types cards */

/* Light theme: white border for editorial publication cards */
body.light-theme .publication-types-section .publication-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each editorial publication card */
.publication-types-section .publication-card.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Magazines & Newsletters - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.publication-types-section .publication-card.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Books & E-books - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.publication-types-section .publication-card.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Reports & Whitepapers - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.publication-types-section .publication-card.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Brochures & Catalogs - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring pseudo-elements for editorial publication cards */
.publication-types-section .publication-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.publication-types-section .publication-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Second bar going in opposite direction for editorial publication cards with different color */
.publication-types-section .publication-card.progress-ring::before {
    background:
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            color-mix(in oklab, var(--accent-2, #00E5FF) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent-2, #00E5FF) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent-2, #00E5FF) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    animation: pr-scan-reverse 2.8s linear infinite;
}

/* Single bar progress ring for CRM service cards */

/* Light theme: white border for CRM service cards */
body.light-theme .services-overview .crm-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM service card */
.services-overview .crm-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Custom CRM Development - Red */
.services-overview .crm-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* CRM Integration - Teal */
.services-overview .crm-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Data Analytics & Reporting - Yellow */
.services-overview .crm-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Mobile CRM Solutions - Purple */
.services-overview .crm-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Security & Compliance - Cyan */
.services-overview .crm-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Training & Support - Pink */

/* Single bar progress ring pseudo-elements for CRM service cards */
.services-overview .crm-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.services-overview .crm-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM feature cards */

/* Light theme: white border for CRM feature cards */
body.light-theme .features-section .feature-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM feature card */
.features-section .feature-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Contact Management - Red */
.features-section .feature-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Sales Pipeline - Teal */
.features-section .feature-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Email Marketing - Yellow */
.features-section .feature-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Communication Hub - Purple */
.features-section .feature-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Task Management - Cyan */
.features-section .feature-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Automated Notifications - Pink */

/* Single bar progress ring pseudo-elements for CRM feature cards */
.features-section .feature-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.features-section .feature-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM industry cards */

/* Light theme: white border for CRM industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Retail & E-commerce - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Financial Services - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real Estate - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Education - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Manufacturing - Pink */

/* Single bar progress ring pseudo-elements for CRM industry cards */
.industries-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.industries-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for editorial benefits and process cards */

/* Light theme: white border for editorial benefit and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each editorial benefit card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Strategic Content - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Design Excellence - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Fast Turnaround - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Attention to Detail - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each editorial process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Content Strategy - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Writing & Editing - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Design & Layout - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Review & Finalization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring pseudo-elements for editorial benefit and process cards */
.benefits-section .benefit-item.progress-ring::before,
.process-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.benefits-section .benefit-item.progress-ring::after,
.process-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Second bar going in opposite direction for editorial benefit and process cards with different color */
.benefits-section .benefit-item.progress-ring::before,
.process-section .benefit-item.progress-ring::before {
    background:
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            color-mix(in oklab, var(--accent-2, #00E5FF) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent-2, #00E5FF) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent-2, #00E5FF) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    animation: pr-scan-reverse 2.8s linear infinite;
}

/* Single bar progress ring for CRM service cards */

/* Light theme: white border for CRM service cards */
body.light-theme .services-overview .crm-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM service card */
.services-overview .crm-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Custom CRM Development - Red */
.services-overview .crm-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* CRM Integration - Teal */
.services-overview .crm-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Data Analytics & Reporting - Yellow */
.services-overview .crm-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Mobile CRM Solutions - Purple */
.services-overview .crm-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Security & Compliance - Cyan */
.services-overview .crm-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Training & Support - Pink */

/* Single bar progress ring pseudo-elements for CRM service cards */
.services-overview .crm-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.services-overview .crm-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM feature cards */

/* Light theme: white border for CRM feature cards */
body.light-theme .features-section .feature-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM feature card */
.features-section .feature-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Contact Management - Red */
.features-section .feature-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Sales Pipeline - Teal */
.features-section .feature-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Email Marketing - Yellow */
.features-section .feature-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Communication Hub - Purple */
.features-section .feature-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Task Management - Cyan */
.features-section .feature-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Automated Notifications - Pink */

/* Single bar progress ring pseudo-elements for CRM feature cards */
.features-section .feature-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.features-section .feature-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM industry cards */

/* Light theme: white border for CRM industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Retail & E-commerce - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Financial Services - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real Estate - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Education - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Manufacturing - Pink */

/* Single bar progress ring pseudo-elements for CRM industry cards */
.industries-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.industries-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Progress ring border effect for editorial expertise cards */


/* Light theme: white border for editorial expertise cards */
body.light-theme .expertise-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each editorial expertise card */
.expertise-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Academic Writing - Red */
.expertise-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Business Content - Teal */
.expertise-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Creative Writing - Yellow */
.expertise-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Technical Documentation - Purple */
.expertise-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Marketing Content - Cyan */
.expertise-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Digital Publishing - Pink */

/* Single bar progress ring pseudo-elements for editorial expertise cards */
.expertise-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.expertise-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for editorial publication types cards */

/* Light theme: white border for editorial publication cards */
body.light-theme .publication-types-section .publication-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each editorial publication card */
.publication-types-section .publication-card.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Magazines & Newsletters - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.publication-types-section .publication-card.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Books & E-books - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.publication-types-section .publication-card.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Reports & Whitepapers - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.publication-types-section .publication-card.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Brochures & Catalogs - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring pseudo-elements for editorial publication cards */
.publication-types-section .publication-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.publication-types-section .publication-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Second bar going in opposite direction for editorial publication cards with different color */
.publication-types-section .publication-card.progress-ring::before {
    background:
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            color-mix(in oklab, var(--accent-2, #00E5FF) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent-2, #00E5FF) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent-2, #00E5FF) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    animation: pr-scan-reverse 2.8s linear infinite;
}

/* Single bar progress ring for CRM service cards */

/* Light theme: white border for CRM service cards */
body.light-theme .services-overview .crm-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM service card */
.services-overview .crm-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Custom CRM Development - Red */
.services-overview .crm-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* CRM Integration - Teal */
.services-overview .crm-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Data Analytics & Reporting - Yellow */
.services-overview .crm-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Mobile CRM Solutions - Purple */
.services-overview .crm-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Security & Compliance - Cyan */
.services-overview .crm-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Training & Support - Pink */

/* Single bar progress ring pseudo-elements for CRM service cards */
.services-overview .crm-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.services-overview .crm-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM feature cards */

/* Light theme: white border for CRM feature cards */
body.light-theme .features-section .feature-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM feature card */
.features-section .feature-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Contact Management - Red */
.features-section .feature-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Sales Pipeline - Teal */
.features-section .feature-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Email Marketing - Yellow */
.features-section .feature-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Communication Hub - Purple */
.features-section .feature-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Task Management - Cyan */
.features-section .feature-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Automated Notifications - Pink */

/* Single bar progress ring pseudo-elements for CRM feature cards */
.features-section .feature-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.features-section .feature-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM industry cards */

/* Light theme: white border for CRM industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Retail & E-commerce - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Financial Services - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real Estate - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Education - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Manufacturing - Pink */

/* Single bar progress ring pseudo-elements for CRM industry cards */
.industries-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.industries-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for editorial benefits and process cards */

/* Light theme: white border for editorial benefit and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each editorial benefit card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Strategic Content - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Design Excellence - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Fast Turnaround - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Attention to Detail - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each editorial process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Content Strategy - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Writing & Editing - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Design & Layout - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Review & Finalization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring pseudo-elements for editorial benefit and process cards */
.benefits-section .benefit-item.progress-ring::before,
.process-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.benefits-section .benefit-item.progress-ring::after,
.process-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Second bar going in opposite direction for editorial benefit and process cards with different color */
.benefits-section .benefit-item.progress-ring::before,
.process-section .benefit-item.progress-ring::before {
    background:
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            color-mix(in oklab, var(--accent-2, #00E5FF) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent-2, #00E5FF) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent-2, #00E5FF) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    animation: pr-scan-reverse 2.8s linear infinite;
}

/* Single bar progress ring for CRM service cards */

/* Light theme: white border for CRM service cards */
body.light-theme .services-overview .crm-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM service card */
.services-overview .crm-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Custom CRM Development - Red */
.services-overview .crm-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* CRM Integration - Teal */
.services-overview .crm-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Data Analytics & Reporting - Yellow */
.services-overview .crm-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Mobile CRM Solutions - Purple */
.services-overview .crm-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Security & Compliance - Cyan */
.services-overview .crm-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Training & Support - Pink */

/* Single bar progress ring pseudo-elements for CRM service cards */
.services-overview .crm-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.services-overview .crm-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM feature cards */

/* Light theme: white border for CRM feature cards */
body.light-theme .features-section .feature-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM feature card */
.features-section .feature-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Contact Management - Red */
.features-section .feature-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Sales Pipeline - Teal */
.features-section .feature-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Email Marketing - Yellow */
.features-section .feature-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Communication Hub - Purple */
.features-section .feature-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Task Management - Cyan */
.features-section .feature-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Automated Notifications - Pink */

/* Single bar progress ring pseudo-elements for CRM feature cards */
.features-section .feature-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.features-section .feature-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM industry cards */

/* Light theme: white border for CRM industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Retail & E-commerce - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Financial Services - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real Estate - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Education - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Manufacturing - Pink */

/* Single bar progress ring pseudo-elements for CRM industry cards */
.industries-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.industries-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Progress ring pseudo-elements for testimonial cards */
.testimonial-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.testimonial-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for editorial publication types cards */

/* Light theme: white border for editorial publication cards */
body.light-theme .publication-types-section .publication-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each editorial publication card */
.publication-types-section .publication-card.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Magazines & Newsletters - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.publication-types-section .publication-card.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Books & E-books - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.publication-types-section .publication-card.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Reports & Whitepapers - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.publication-types-section .publication-card.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Brochures & Catalogs - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring pseudo-elements for editorial publication cards */
.publication-types-section .publication-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.publication-types-section .publication-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Second bar going in opposite direction for editorial publication cards with different color */
.publication-types-section .publication-card.progress-ring::before {
    background:
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            color-mix(in oklab, var(--accent-2, #00E5FF) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent-2, #00E5FF) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent-2, #00E5FF) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    animation: pr-scan-reverse 2.8s linear infinite;
}

/* Single bar progress ring for CRM service cards */

/* Light theme: white border for CRM service cards */
body.light-theme .services-overview .crm-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM service card */
.services-overview .crm-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Custom CRM Development - Red */
.services-overview .crm-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* CRM Integration - Teal */
.services-overview .crm-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Data Analytics & Reporting - Yellow */
.services-overview .crm-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Mobile CRM Solutions - Purple */
.services-overview .crm-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Security & Compliance - Cyan */
.services-overview .crm-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Training & Support - Pink */

/* Single bar progress ring pseudo-elements for CRM service cards */
.services-overview .crm-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.services-overview .crm-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM feature cards */

/* Light theme: white border for CRM feature cards */
body.light-theme .features-section .feature-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM feature card */
.features-section .feature-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Contact Management - Red */
.features-section .feature-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Sales Pipeline - Teal */
.features-section .feature-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Email Marketing - Yellow */
.features-section .feature-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Communication Hub - Purple */
.features-section .feature-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Task Management - Cyan */
.features-section .feature-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Automated Notifications - Pink */

/* Single bar progress ring pseudo-elements for CRM feature cards */
.features-section .feature-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.features-section .feature-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM industry cards */

/* Light theme: white border for CRM industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Retail & E-commerce - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Financial Services - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real Estate - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Education - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Manufacturing - Pink */

/* Single bar progress ring pseudo-elements for CRM industry cards */
.industries-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.industries-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for editorial benefits and process cards */

/* Light theme: white border for editorial benefit and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each editorial benefit card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Strategic Content - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Design Excellence - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Fast Turnaround - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Attention to Detail - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each editorial process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Content Strategy - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Writing & Editing - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Design & Layout - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Review & Finalization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring pseudo-elements for editorial benefit and process cards */
.benefits-section .benefit-item.progress-ring::before,
.process-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.benefits-section .benefit-item.progress-ring::after,
.process-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Second bar going in opposite direction for editorial benefit and process cards with different color */
.benefits-section .benefit-item.progress-ring::before,
.process-section .benefit-item.progress-ring::before {
    background:
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            color-mix(in oklab, var(--accent-2, #00E5FF) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent-2, #00E5FF) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent-2, #00E5FF) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    animation: pr-scan-reverse 2.8s linear infinite;
}

/* Single bar progress ring for CRM service cards */

/* Light theme: white border for CRM service cards */
body.light-theme .services-overview .crm-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM service card */
.services-overview .crm-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Custom CRM Development - Red */
.services-overview .crm-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* CRM Integration - Teal */
.services-overview .crm-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Data Analytics & Reporting - Yellow */
.services-overview .crm-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Mobile CRM Solutions - Purple */
.services-overview .crm-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Security & Compliance - Cyan */
.services-overview .crm-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Training & Support - Pink */

/* Single bar progress ring pseudo-elements for CRM service cards */
.services-overview .crm-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.services-overview .crm-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM feature cards */

/* Light theme: white border for CRM feature cards */
body.light-theme .features-section .feature-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM feature card */
.features-section .feature-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Contact Management - Red */
.features-section .feature-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Sales Pipeline - Teal */
.features-section .feature-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Email Marketing - Yellow */
.features-section .feature-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Communication Hub - Purple */
.features-section .feature-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Task Management - Cyan */
.features-section .feature-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Automated Notifications - Pink */

/* Single bar progress ring pseudo-elements for CRM feature cards */
.features-section .feature-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.features-section .feature-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM industry cards */

/* Light theme: white border for CRM industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Retail & E-commerce - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Financial Services - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real Estate - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Education - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Manufacturing - Pink */

/* Single bar progress ring pseudo-elements for CRM industry cards */
.industries-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.industries-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Progress ring border effect for feature cards */


/* Light theme: white border for feature cards */
body.light-theme .feature-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each feature card */
.feature-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Automation - Red */
.feature-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Scalable Impact - Teal */
.feature-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Collaboration - Yellow */

/* Progress ring pseudo-elements for feature cards */
.feature-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.feature-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for editorial publication types cards */

/* Light theme: white border for editorial publication cards */
body.light-theme .publication-types-section .publication-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each editorial publication card */
.publication-types-section .publication-card.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Magazines & Newsletters - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.publication-types-section .publication-card.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Books & E-books - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.publication-types-section .publication-card.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Reports & Whitepapers - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.publication-types-section .publication-card.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Brochures & Catalogs - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring pseudo-elements for editorial publication cards */
.publication-types-section .publication-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.publication-types-section .publication-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Second bar going in opposite direction for editorial publication cards with different color */
.publication-types-section .publication-card.progress-ring::before {
    background:
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            color-mix(in oklab, var(--accent-2, #00E5FF) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent-2, #00E5FF) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent-2, #00E5FF) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    animation: pr-scan-reverse 2.8s linear infinite;
}

/* Single bar progress ring for CRM service cards */

/* Light theme: white border for CRM service cards */
body.light-theme .services-overview .crm-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM service card */
.services-overview .crm-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Custom CRM Development - Red */
.services-overview .crm-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* CRM Integration - Teal */
.services-overview .crm-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Data Analytics & Reporting - Yellow */
.services-overview .crm-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Mobile CRM Solutions - Purple */
.services-overview .crm-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Security & Compliance - Cyan */
.services-overview .crm-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Training & Support - Pink */

/* Single bar progress ring pseudo-elements for CRM service cards */
.services-overview .crm-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.services-overview .crm-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM feature cards */

/* Light theme: white border for CRM feature cards */
body.light-theme .features-section .feature-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM feature card */
.features-section .feature-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Contact Management - Red */
.features-section .feature-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Sales Pipeline - Teal */
.features-section .feature-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Email Marketing - Yellow */
.features-section .feature-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Communication Hub - Purple */
.features-section .feature-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Task Management - Cyan */
.features-section .feature-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Automated Notifications - Pink */

/* Single bar progress ring pseudo-elements for CRM feature cards */
.features-section .feature-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.features-section .feature-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM industry cards */

/* Light theme: white border for CRM industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Retail & E-commerce - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Financial Services - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real Estate - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Education - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Manufacturing - Pink */

/* Single bar progress ring pseudo-elements for CRM industry cards */
.industries-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.industries-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for editorial benefits and process cards */

/* Light theme: white border for editorial benefit and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each editorial benefit card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Strategic Content - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Design Excellence - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Fast Turnaround - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Attention to Detail - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each editorial process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Content Strategy - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Writing & Editing - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Design & Layout - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Review & Finalization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring pseudo-elements for editorial benefit and process cards */
.benefits-section .benefit-item.progress-ring::before,
.process-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.benefits-section .benefit-item.progress-ring::after,
.process-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Second bar going in opposite direction for editorial benefit and process cards with different color */
.benefits-section .benefit-item.progress-ring::before,
.process-section .benefit-item.progress-ring::before {
    background:
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            color-mix(in oklab, var(--accent-2, #00E5FF) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent-2, #00E5FF) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent-2, #00E5FF) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    animation: pr-scan-reverse 2.8s linear infinite;
}

/* Single bar progress ring for CRM service cards */

/* Light theme: white border for CRM service cards */
body.light-theme .services-overview .crm-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM service card */
.services-overview .crm-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Custom CRM Development - Red */
.services-overview .crm-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* CRM Integration - Teal */
.services-overview .crm-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Data Analytics & Reporting - Yellow */
.services-overview .crm-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Mobile CRM Solutions - Purple */
.services-overview .crm-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Security & Compliance - Cyan */
.services-overview .crm-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Training & Support - Pink */

/* Single bar progress ring pseudo-elements for CRM service cards */
.services-overview .crm-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.services-overview .crm-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM feature cards */

/* Light theme: white border for CRM feature cards */
body.light-theme .features-section .feature-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM feature card */
.features-section .feature-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Contact Management - Red */
.features-section .feature-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Sales Pipeline - Teal */
.features-section .feature-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Email Marketing - Yellow */
.features-section .feature-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Communication Hub - Purple */
.features-section .feature-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Task Management - Cyan */
.features-section .feature-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Automated Notifications - Pink */

/* Single bar progress ring pseudo-elements for CRM feature cards */
.features-section .feature-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.features-section .feature-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM industry cards */

/* Light theme: white border for CRM industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Retail & E-commerce - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Financial Services - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real Estate - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Education - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Manufacturing - Pink */

/* Single bar progress ring pseudo-elements for CRM industry cards */
.industries-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.industries-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

body.dark-theme .make-bottom h3 {
    color: #8b5cf6 !important;
}

body.dark-theme .make-bottom p {
    color: #a78bfa;
}

body.dark-theme .tab-button {
    color: #ffffff;
    border-bottom: 2px solid #4b5563;
}

body.dark-theme .tab-button:hover {
    color: #7c3aed;
    border-bottom: 2px solid #4b5563;
}

body.dark-theme .tab-button.active {
    color: #7c3aed;
    border-bottom: 2px solid #7c3aed;
}

body.dark-theme .tab-content-image {
    box-shadow: none;
}

body.dark-theme .tab-text h4 {
    color: #8b5cf6 !important;
}

body.dark-theme .tab-text p {
    color: #a78bfa;
}

body.dark-theme .workflow-item span {
    color: #a78bfa;
}

/* Apps Integration Part (within Make.com section) */
.apps-integration-part {
    padding: 60px 0 40px 0;
    text-align: center;
    margin-top: 80px;
}

.apps-integration-part h3 {
    font-family: 'Inter', 'Inter Fallback', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #6b21a8;
    margin-bottom: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
}

/* Apps Carousel */
.apps-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 60px auto;
    overflow: hidden;
}

.apps-carousel {
    display: flex;
    gap: 80px;
    padding: 20px 0;
    cursor: pointer;
    position: relative;
    animation: scroll 25s linear infinite;
    width: max-content;
    will-change: transform;
}

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

.apps-carousel::after {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: #6b21a8;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.apps-carousel:hover::after {
    opacity: 1;
}

.apps-carousel:hover {
    animation-play-state: paused;
}

.apps-carousel.paused {
    animation-play-state: paused;
}

.apps-carousel .app-item {
    flex: 0 0 auto;
    width: 100px;
}

.app-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.app-logo {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 1rem;
    overflow: hidden;
}

.app-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* App Logo Colors */
.google-gemini .logo-circle {
    background: #4285f4;
    color: white;
}

.make-ai .logo-circle {
    background: #8b5cf6;
    color: white;
}

.perplexity .logo-circle {
    background: #06b6d4;
    color: white;
}

.openai .logo-circle {
    background: #10b981;
    color: white;
}

.hubspot .logo-circle {
    background: #ff7a59;
    color: white;
}

.monday .logo-circle {
    background: #ff5722;
    color: white;
}

.netsuite .logo-circle {
    background: #1A1A1A;
    color: white;
}

.ai-agent .logo-circle {
    background: #6366f1;
    color: white;
}

.canva .logo-circle {
    background: #00c4cc;
    color: white;
}

.salesforce .logo-circle {
    background: #00a1e0;
    color: white;
}

.slack .logo-circle {
    background: #4a154b;
    color: white;
}

.app-name {
    font-family: 'Inter', 'Inter Fallback', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #6b21a8;
    text-align: center;
    line-height: 1.3;
}

.app-name small {
    font-family: 'Inter', 'Inter Fallback', sans-serif;
    font-size: 0.7rem;
    color: #9ca3af;
    font-weight: 400;
}

.oracle-text {
    font-size: 0.6rem;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
}

/* Apps Integration Part - Dark Theme */

body.dark-theme .apps-integration-part h3 {
    color: #8b5cf6 !important;
}

body.dark-theme .app-name {
    color: #e0e7ff;
}

body.dark-theme .app-name small {
    color: #9ca3af;
}

body.dark-theme .apps-carousel::after {
    color: #e0e7ff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .make-content h2 {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    body.dark-theme .make-content h2 {
        color: #ffffff !important;
    }
    
    .feature-cards {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .make-bottom h3 {
        font-family: 'Inter', 'Inter Fallback', sans-serif;
        font-size: 36px;
    }
    
    .tab-navigation {
        gap: 5px;
        margin-bottom: 40px;
        justify-content: space-between;
    }
    
    .tab-button {
        padding: 8px 0;
        font-size: 0.9rem;
        flex: 1;
        min-height: 40px;
        line-height: 1.2;
    }
    
    .tab-progress-bar {
        max-width: 95%;
        margin: 15px auto 30px auto;
    }
    
    .tab-button {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .tab-content {
        flex-direction: column;
        gap: 40px;
        margin: 60px auto 0 auto;
    }
    
    .tab-text h4 {
        font-size: 36px;
    }
    
    .tab-text {
        text-align: left;
        align-items: flex-start;
    }
    
    .workflow-dots {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .make-style-section {
        padding: 60px 0;
    }
    
    .make-content h2 {
        font-size: 1.8rem;
    }
    
    body.dark-theme .make-content h2 {
        color: #ffffff !important;
    }

.feature-card {
        padding: 25px 15px;
    }
    
    .make-bottom h3 {
        font-family: 'Inter', 'Inter Fallback', sans-serif;
        font-size: 28px;
    }
    
    .tab-navigation {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .tab-button {
        padding: 8px 0;
        flex: none;
        width: 100%;
        min-height: 40px;
        line-height: 1.2;
    }
    
    .tab-progress-bar {
        max-width: 95%;
        margin: 10px auto 20px auto;
    }
    
    .tab-text h4 {
        font-size: 28px;
    }
    
    .progress-line {
        height: 3px;
    }
    
    .tab-content-image {
        width: 100%;
        max-width: 400px;
        height: 280px;
    }
}

/* Removed chat widget demo styles */

@keyframes lockPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .ai-automation-content {
        gap: 4rem;
    }
    
    .ai-automation-header h2 {
        font-size: 3rem;
    }
}

@media (max-width: 968px) {
    .ai-automation-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .features-column {
        order: 2;
    }
    
    .chat-widget-demo {
        max-width: 350px;
    }
    
    .chat-demo-column {
        order: 1;
    }
    
    .ai-automation-header h2 {
        font-size: 2.5rem;
    }
    
    .ai-automation-header .section-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .ai-automation {
        padding: 6rem 0;
    }
    
    .ai-automation-header h2 {
        font-size: 2.25rem;
    }
    
    .ai-automation-header .section-description {
        font-size: 1rem;
    }
    
    .feature-item {
        padding: 1.5rem 0;
    }
    
    .feature-icon {
        width: 72px;
        height: 72px;
    }
    
    .feature-content h3 {
        font-size: 1.25rem;
    }
    
}

@media (max-width: 480px) {
    .ai-automation {
        padding: 4rem 0;
    }
    
    .ai-automation-header h2 {
        font-size: 2rem;
    }
    
    .ai-automation-content {
        padding: 0 1rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        align-items: center;
    }

.chat-widget-demo {
        max-width: 100%;
    }
    
    .discover-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* Social Media Styles */
.social-media {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-link.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #bc1888;
}

.social-link.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
}

.social-link.whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #FFFFFF;
    font-size: 0.85rem;
    margin: 0;
}

/* Header scroll effects completely removed */

/* Footer Responsive */
@media screen and (max-width: 768px) {
    footer {
        padding: 2.5rem 0 1rem 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    /* Primera secciï¿½n - Logo y redes sociales */
    .footer-section:first-child {
        order: 1;
        margin-bottom: 1rem;
    }
    
    .footer-section:first-child p {
        font-size: 1.1rem;
        font-weight: 600;
        margin: 1.5rem 0;
        color: white;
    }
    
    /* Servicios */
    .footer-section:nth-child(2) {
        order: 2;
    }
    
    .footer-section:nth-child(2) h4 {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-section:nth-child(2) ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        max-width: 300px;
        margin: 0 auto;
        justify-items: center;
    }
    
    .footer-section:nth-child(2) ul li a {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
        display: block;
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.05);
        transition: all 0.3s ease;
        text-align: center;
        width: 100%;
        max-width: 140px;
    }
    
    .footer-section:nth-child(2) ul li a:hover {
        background: rgba(74, 222, 128, 0.1);
        color: var(--secondary-color);
    }
    
    /* Compaï¿½ï¿½a */
    .footer-section:nth-child(3) {
        order: 3;
    }
    
    .footer-section:nth-child(3) h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-section:nth-child(3) ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .footer-section:nth-child(3) ul li a {
        font-size: 0.95rem;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.08);
        transition: all 0.3s ease;
        text-align: center;
        min-width: 100px;
    }
    
    .footer-section:nth-child(3) ul li a:hover {
        background: var(--secondary-color);
        color: var(--dark-bg);
    }
    
    /* Contacto */
    .footer-section:nth-child(4) {
        order: 4;
        background: rgba(255, 255, 255, 0.05);
        padding: 1.5rem;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-section:nth-child(4) h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .footer-section:nth-child(4) ul li {
        margin-bottom: 1rem;
    }
    
    .footer-section:nth-child(4) ul li a {
        font-size: 1rem;
        font-weight: 500;
        padding: 0.75rem;
        display: block;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        text-align: center;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .footer-section:nth-child(4) ul li a:hover {
        background: var(--secondary-color);
        color: var(--dark-bg);
        transform: translateY(-2px);
    }
    
    /* Logo y redes sociales */
    .footer-logo {
        width: 108.69px !important;
        height: 50px !important;
        max-width: none !important;
        object-fit: contain !important;
        margin-bottom: 1rem;
    }
    
    /* Force footer logo dimensions - highest specificity */
    img.footer-logo,
    .logo-img.footer-logo,
    body:has(.hero) img.footer-logo,
    body:has(.hero) .logo-img.footer-logo,
    footer img.footer-logo,
    footer .logo-img.footer-logo,
    .footer img.footer-logo,
    .footer .logo-img.footer-logo {
        width: 108.69px !important;
        height: 50px !important;
        max-width: none !important;
        object-fit: contain !important;
    }
    
    .social-media {
        justify-content: center;
        gap: 1.2rem;
        margin-top: 1.5rem;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        background: rgba(255, 255, 255, 0.15);
    }
    
    .social-link:hover {
        transform: translateY(-3px) scale(1.1);
    }
    
    .social-link svg {
        width: 20px;
        height: 20px;
    }
    
    /* Footer bottom */
    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .footer-bottom p {
        font-size: 0.9rem;
    }
}

/* ===========================================
   WHATSAPP CHAT WIDGET - FLOATING CHAT
   =========================================== */

/* Main WhatsApp chat widget container */
/* NOTA: Los estilos del chat ahora están en desktop-chat-widget-sinsajo-styles.css */
/* .whatsapp-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    font-family: 'Inter', 'Inter Fallback', sans-serif;
} */

/* ===========================================
   CHAT STATUS INDICATOR
   =========================================== */

/* Status indicator container */
.status-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
}

/* Status dot base styling */
.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

/* ===========================================
   STATUS DOT STATES
   =========================================== */

/* Online status dot */
.status-dot.online {
    background: #22c55e;
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.5);
}

/* Offline status dot */
.status-dot.offline {
    background: #ef4444;
    box-shadow: 0 0 6px rgba(239, 68, 68, 0.5);
}

/* Connecting status dot */
.status-dot.connecting {
    background: #f59e0b;
    box-shadow: 0 0 6px rgba(245, 158, 11, 0.5);
    animation: pulse 1.5s infinite;
}

/* ===========================================
   STATUS ANIMATIONS
   =========================================== */

/* Pulse animation for connecting state */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ===========================================
   CHAT STATUS TEXT
   =========================================== */

/* Status text styling */
#chatStatusText {
    font-size: 0.85em;
    font-weight: 500;
    transition: color 0.3s ease;
}

/* Online status text color */
.status-dot.online + #chatStatusText {
    color: #22c55e;
}

/* Offline status text color */
.status-dot.offline + #chatStatusText {
    color: #ef4444;
}

/* Connecting status text color */
.status-dot.connecting + #chatStatusText {
    color: #f59e0b;
}

/* Enhanced Chat Badge */
.chat-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    border-radius: 50%;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.2);
    animation: badgePulse 2s infinite;
    transition: all 0.3s ease;
}

.chat-badge.hidden {
    display: none !important;
}

.chat-badge.animate {
    animation: badgeBounce 0.6s ease;
}

@keyframes badgePulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(139, 92, 246, 0.2);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
    }
}

@keyframes badgeBounce {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* Notification sound indicator */
.chat-toggle.has-notification {
    animation: notificationGlow 1s ease-in-out;
}

.chat-toggle.has-new-messages {
    animation: newMessagePulse 2s ease-in-out;
}

@keyframes notificationGlow {
    0%, 100% { 
        box-shadow: 0 0 0 rgba(139, 92, 246, 0);
    }
    50% { 
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
    }
}

@keyframes newMessagePulse {
    0%, 100% { 
        box-shadow: 0 0 0 rgba(34, 197, 94, 0);
        transform: scale(1);
    }
    25% { 
        box-shadow: 0 0 15px rgba(34, 197, 94, 0.8);
        transform: scale(1.05);
    }
    50% { 
        box-shadow: 0 0 25px rgba(34, 197, 94, 0.6);
        transform: scale(1.1);
    }
    75% { 
        box-shadow: 0 0 15px rgba(34, 197, 94, 0.8);
        transform: scale(1.05);
    }
}

/* Dark theme styles for chat widget */
body.dark-theme .chat-window {
    background: #111827 !important;
    border: 1px solid #333333 !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3) !important;
}

body.dark-theme .chat-header {
    background: #2a2a2a !important;
    border-bottom: 1px solid #333333 !important;
}

body.dark-theme .chat-header h4 {
    color: #ffffff !important;
}

body.dark-theme .chat-header p {
    color: #888888 !important;
}

body.dark-theme .chat-messages {
    background: #111827 !important;
}

body.dark-theme .message {
    background: #2a2a2a !important;
    color: #ffffff !important;
    border: none !important;
}

body.dark-theme .message.user {
    background: #8b5cf6 !important;
    color: #ffffff !important;
}

body.dark-theme .chat-input {
    background: #2a2a2a !important;
    border: 1px solid #333333 !important;
    color: #ffffff !important;
}

body.dark-theme .chat-input input {
    background: #2a2a2a !important;
    color: #ffffff !important;
}

body.dark-theme .chat-input input::placeholder {
    color: #888888 !important;
}

body.dark-theme .chat-input button {
    background: #8b5cf6 !important;
    color: #ffffff !important;
}

body.dark-theme .chat-input button:hover {
    background: #7c3aed !important;
}

body.dark-theme .chat-close {
    color: #ffffff !important;
}

/* Light theme styles for chat widget (keep current design) */
body.light-theme .chat-window {
    background: white !important;
    border: 1px solid #e5e7eb !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12) !important;
}

body.light-theme .chat-header {
    background: #8b5cf6 !important;
    border-bottom: 1px solid #7c3aed !important;
}

body.light-theme .chat-header h4 {
    color: #ffffff !important;
}

body.light-theme .chat-header p {
    color: #ffffff !important;
}

body.light-theme .chat-messages {
    background: white !important;
}

body.light-theme .message {
    background: #f3f4f6 !important;
    color: #1f2937 !important;
    border: none !important;
}

body.light-theme .message.user {
    background: #8b5cf6 !important;
    color: #ffffff !important;
}

body.light-theme .chat-input {
    background: white !important;
    border: 1px solid #d1d5db !important;
    color: #1f2937 !important;
}

body.light-theme .chat-input input {
    background: white !important;
    color: #1f2937 !important;
}

body.light-theme .chat-input input::placeholder {
    color: #9ca3af !important;
}

body.light-theme .chat-input button {
    background: #8b5cf6 !important;
    color: #ffffff !important;
}

body.light-theme .chat-input button:hover {
    background: #7c3aed !important;
}

/* Force h4 colors - Final override */
body.dark-theme h4,
body.dark-theme .testimonial-author h4,
body.dark-theme .tab-text h4,
body.dark-theme .footer-section h4,
body.dark-theme .chat-info h4,
body.dark-theme .footer-section:nth-child(2) h4,
body.dark-theme .footer-section:nth-child(4) h4,
body.dark-theme .footer-section:nth-child(3) h4 {
    color: #8b5cf6 !important;
}

body.light-theme h4,
body.light-theme .testimonial-author h4,
body.light-theme .tab-text h4,
body.light-theme .footer-section h4,
body.light-theme .chat-info h4,
body.light-theme .footer-section:nth-child(2) h4,
body.light-theme .footer-section:nth-child(4) h4,
body.light-theme .footer-section:nth-child(3) h4 {
    color: #FFFFFF !important;
}

/* Specific text color overrides for section descriptions */
body.dark-theme .section-description,
body.dark-theme .make-bottom p,
body.dark-theme .ai-automation-header .section-description {
    color: #8b5cf6 !important;
}

body.light-theme .section-description,
body.light-theme .make-bottom p,
body.light-theme .ai-automation-header .section-description {
    color: #8b5cf6 !important;
}

/* Stats card descriptions color overrides */
body.dark-theme .stat-card p {
    color: #8b5cf6 !important;
}

body.light-theme .stat-card p {
    color: #1f2937 !important;
}

/* Stats card numbers color overrides */
body.dark-theme .stat-card h3 {
    color: #8b5cf6 !important;
}

body.light-theme .stat-card h3 {
    color: #8b5cf6 !important;
}

/* Restore animation for stat numbers */
.stat-card h3 {
    animation: pulse 3s infinite !important;
    display: inline-block !important;
}

@keyframes pulse {
    0% { 
        transform: scale(1); 
        box-shadow: 0 0 0 0 rgba(106, 13, 173, 0.4); 
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 0 0 10px rgba(106, 13, 173, 0); 
    }
    100% { 
        transform: scale(1); 
        box-shadow: 0 0 0 0 rgba(106, 13, 173, 0); 
    }
}

/* AI Automation feature titles color overrides - only when active */
body.light-theme .feature-item.active .feature-content h3 {
    color: #FFFFFF !important;
}

body.dark-theme .feature-item.active .feature-content h3 {
    color: #8b5cf6 !important;
}

/* Non-active feature titles - more subtle color */
body.light-theme .feature-item:not(.active) .feature-content h3 {
    color: #6b7280 !important;
}

body.dark-theme .feature-item:not(.active) .feature-content h3 {
    color: #6b7280 !important;
}

/* AI Automation header colors - same as night mode for day mode */
body.light-theme .ai-automation-header h2 {
    color: #ffffff !important;
}

body.light-theme .ai-automation-header .section-description {
    color: #8b5cf6 !important;
}

/* Force all section descriptions to have purple color in dark mode */
body.dark-theme .section-description {
    color: #8b5cf6 !important;
}

/* Make bottom title color override for dark mode */
body.dark-theme .make-bottom h3 {
    color: #FFFFFF !important;
}

/* Ensure testimonial cards are visible in light mode - matching service-card styling */
body.light-theme .testimonial-card {
    background-color: #ffffff !important;
    border: 1px solid rgba(139, 92, 246, 0.2) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
}

/* Ensure testimonial card text is visible in light mode */
body.light-theme .testimonial-quote {
    color: #1f2937 !important;
}

body.light-theme .testimonial-author h4 {
    color: #8b5cf6 !important;
}

body.light-theme .testimonial-author p {
    color: #6b7280 !important;
}

/* Force all footer text to be white */
.footer-section h4,
.footer-section ul li a,
.footer-section p,
.footer-section ul li {
    color: #FFFFFF !important;
}

/* Ensure footer links maintain white color on hover */
.footer-section ul li a:hover {
    color: #FFFFFF !important;
}

/* Force footer section titles to be white with higher specificity */
.footer-section h4,
.footer-section:nth-child(1) h4,
.footer-section:nth-child(2) h4,
.footer-section:nth-child(3) h4,
.footer-section:nth-child(4) h4 {
    color: #FFFFFF !important;
}

/* Override any existing color rules for footer titles */
body.dark-theme .footer-section h4,
body.light-theme .footer-section h4,
body.dark-theme .footer-section:nth-child(1) h4,
body.light-theme .footer-section:nth-child(1) h4,
body.dark-theme .footer-section:nth-child(2) h4,
body.light-theme .footer-section:nth-child(2) h4,
body.dark-theme .footer-section:nth-child(3) h4,
body.light-theme .footer-section:nth-child(3) h4,
body.dark-theme .footer-section:nth-child(4) h4,
body.light-theme .footer-section:nth-child(4) h4 {
    color: #FFFFFF !important;
}

/* Make stat-card background match service-card background */
.stat-card {
    background-color: #ffffff !important;
    border: 1px solid rgba(139, 92, 246, 0.2) !important;
    box-shadow: 0 1px 3px 0 rgba(0,0,0,0.1), 0 1px 2px 0 rgba(0,0,0,0.06) !important;
}

.stat-card:hover {
    background: rgba(139, 92, 246, 0.05) !important;
    border-color: rgba(139, 92, 246, 0.3) !important;
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.1) !important;
}

/* Dark theme stat-card background to match service-card */
body.dark-theme .stat-card {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
}

body.dark-theme .stat-card:hover {
    background: rgba(139, 92, 246, 0.1) !important;
    border-color: rgba(139, 92, 246, 0.3) !important;
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.2) !important;
}

body.light-theme .chat-close {
    color: #ffffff !important;
}

/* Light theme status styles */
body.light-theme .online-status {
    color: #10B981 !important;
}

body.light-theme .offline-status {
    color: #EF4444 !important;
}

/* Dark theme status styles */
body.dark-theme .online-status {
    color: #10B981 !important;
}

body.dark-theme .offline-status {
    color: #EF4444 !important;
}

/* Final override for footer titles - maximum specificity */
.footer-section h4 {
    color: #FFFFFF !important;
}

/* Force white color for all footer titles regardless of theme */
body.dark-theme .footer-section h4,
body.light-theme .footer-section h4 {
    color: #FFFFFF !important;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    background: #8B5CF6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

/* Chat tooltip */
.chat-toggle::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10000;
    pointer-events: none;
}

.chat-toggle::after {
    content: '';
    position: absolute;
    right: 64px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10000;
    pointer-events: none;
}

.chat-toggle:hover::before,
.chat-toggle:hover::after {
    opacity: 1;
    visibility: visible;
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
}

.chat-toggle svg {
    color: white;
    width: 28px;
    height: 28px;
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #FF4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    display: none;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.chat-window.active {
    display: flex;
    animation: slideUp 0.3s ease;
}

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

.chat-header {
    background: #8B5CF6;
    color: white;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-actions {
    display: flex;
    gap: 8px;
    margin-left: auto;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background: #f0f0f0;
}

.chat-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chat-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.chat-info p {
    margin: 0;
    font-size: 12px;
    opacity: 0.8;
}

/* Online/Offline status styles */
.online-status {
    color: #10B981 !important;
    font-weight: 600;
}

.offline-status {
    color: #EF4444 !important;
    font-weight: 600;
}

/* Status indicator dot */
.chat-info p::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
}

.online-status::before {
    background-color: #10B981;
    box-shadow: 0 0 6px rgba(16, 185, 129, 0.5);
}

.offline-status::before {
    background-color: #EF4444;
    box-shadow: 0 0 6px rgba(239, 68, 68, 0.5);
}

.chat-close, .chat-clear {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    padding: 6px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.chat-close:hover, .chat-clear:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chat-clear {
    font-size: 14px;
}

.chat-messages {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    background: #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.message {
    display: flex;
    max-width: 80%;
}

.message.received {
    align-self: flex-start;
}

.message.sent {
    align-self: flex-end;
}

.message-content {
    background: white;
    padding: 12px 16px;
    border-radius: 18px;
    position: relative;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.message.sent .message-content {
    background: #DCF8C6;
}

.message-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    color: #333;
}

.message-time {
    font-size: 11px;
    color: #999;
    margin-top: 4px;
    display: block;
}

.chat-input {
    padding: 16px;
    background: white;
    border-top: 1px solid #e0e0e0;
    display: flex;
    gap: 12px;
    align-items: center;
}

.chat-input input {
    flex: 1;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 12px 16px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease;
}

.chat-input input:focus {
    border-color: #8B5CF6;
}

.chat-input button {
    background: #8B5CF6;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.chat-input button:hover {
    background: #7C3AED;
}

.chat-input button svg {
    color: white;
}

/* Typing indicator styles */
.typing-indicator {
    opacity: 0.7;
    animation: pulse 1.5s ease-in-out infinite;
}

.typing-indicator .message-content p {
    font-style: italic;
    color: #666;
}
.message.received.real-reply .message-content {
    border-left: 3px solid #10B981;
}

.message.received.system-reply .message-content {
    border-left: 3px solid #9CA3AF;
}

.message-origin {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 10px;
    line-height: 1;
    vertical-align: middle;
    background: #e5e7eb;
    color: #111827;
}

.message.received.real-reply .message-origin {
    background: rgba(16, 185, 129, 0.15);
    color: #065F46;
    border: 1px solid rgba(16, 185, 129, 0.35);
}

.message.received.system-reply .message-origin {
    background: rgba(156, 163, 175, 0.2);
    color: #374151;
    border: 1px solid rgba(156, 163, 175, 0.4);
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .whatsapp-chat-widget {
        bottom: 15px;
        right: 15px;
    }
    
    .chat-window {
        width: 300px;
        height: 450px;
        bottom: 75px;
    }
    
    .chat-toggle {
        width: 55px;
        height: 55px;
    }
    
    .chat-toggle svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .chat-window {
        width: calc(100vw - 30px);
        right: -15px;
        height: 400px;
    }
}

/* Responsive Design for Apps Integration Section */
@media (max-width: 768px) {
    .apps-integration-part {
        padding: 40px 0 30px 0;
        margin-top: 60px;
    }
    
    .apps-integration-part h3 {
        font-size: 1.6rem;
        margin-bottom: 30px;
        padding: 0 20px;
    }
    
    .apps-carousel-container {
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .apps-carousel {
        gap: 60px;
        padding: 10px 0;
    }
    
    .apps-carousel .app-item {
        width: 80px;
    }
    
    .app-logo {
        width: 56px;
        height: 56px;
    }
    
    .logo-circle {
        width: 56px;
        height: 56px;
        font-size: 0.9rem;
    }
    
    .app-icon {
        width: 22px;
        height: 22px;
    }
    
    .app-name {
        font-size: 0.8rem;
    }
    
    .app-name small {
        font-size: 0.6rem;
    }

.oracle-text {
        font-size: 0.5rem;
    }
    
}

/* Typography for specific titles */
.new-era-content h2 {
    font-family: "Proxima Nova Semibold", sans-serif !important;
    font-size: 48px !important;
    font-weight: 600 !important;
}

/* Purple Particles System */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.products,
.testimonials,
.performance,
.why-choose-us,
.make-style-section,
.ai-automation-section,
.new-era-section {
    position: relative;
}

.products .container,
.testimonials .container,
.performance .container,
.why-choose-us .container,
.make-style-section .container,
.ai-automation-section .container,
.new-era-section .container {
    position: relative;
    z-index: 2;
}

/* ===== FOOTER LOGO OVERRIDE - MAXIMUM SPECIFICITY ===== */
footer img.logo-img.footer-logo,
.footer img.logo-img.footer-logo,
body footer img.logo-img.footer-logo,
body .footer img.logo-img.footer-logo,
body:has(.hero) footer img.logo-img.footer-logo,
body:has(.hero) .footer img.logo-img.footer-logo {
    width: 108px;
}

/* Light theme: white border for social media service cards */
body.light-theme .services-overview .social-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each social media service card */
.services-overview .social-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Content Creation - Red */
.services-overview .social-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Content Planning & Strategy - Teal */
.services-overview .social-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Visual Design - Yellow */
.services-overview .social-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Analytics & Reporting - Purple */
.services-overview .social-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Community Management - Cyan */
.services-overview .social-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Paid Social Campaigns - Pink */

/* Single bar progress ring pseudo-elements for social media service cards */

.services-overview .social-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for editorial publication types cards */

/* Light theme: white border for editorial publication cards */
body.light-theme .publication-types-section .publication-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each editorial publication card */
.publication-types-section .publication-card.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Magazines & Newsletters - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.publication-types-section .publication-card.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Books & E-books - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.publication-types-section .publication-card.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Reports & Whitepapers - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.publication-types-section .publication-card.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Brochures & Catalogs - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring pseudo-elements for editorial publication cards */
.publication-types-section .publication-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.publication-types-section .publication-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Second bar going in opposite direction for editorial publication cards with different color */
.publication-types-section .publication-card.progress-ring::before {
    background:
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            color-mix(in oklab, var(--accent-2, #00E5FF) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent-2, #00E5FF) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent-2, #00E5FF) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    animation: pr-scan-reverse 2.8s linear infinite;
}

/* Single bar progress ring for CRM service cards */

/* Light theme: white border for CRM service cards */
body.light-theme .services-overview .crm-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM service card */
.services-overview .crm-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Custom CRM Development - Red */
.services-overview .crm-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* CRM Integration - Teal */
.services-overview .crm-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Data Analytics & Reporting - Yellow */
.services-overview .crm-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Mobile CRM Solutions - Purple */
.services-overview .crm-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Security & Compliance - Cyan */
.services-overview .crm-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Training & Support - Pink */

/* Single bar progress ring pseudo-elements for CRM service cards */
.services-overview .crm-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.services-overview .crm-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM feature cards */

/* Light theme: white border for CRM feature cards */
body.light-theme .features-section .feature-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM feature card */
.features-section .feature-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Contact Management - Red */
.features-section .feature-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Sales Pipeline - Teal */
.features-section .feature-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Email Marketing - Yellow */
.features-section .feature-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Communication Hub - Purple */
.features-section .feature-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Task Management - Cyan */
.features-section .feature-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Automated Notifications - Pink */

/* Single bar progress ring pseudo-elements for CRM feature cards */
.features-section .feature-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.features-section .feature-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM industry cards */

/* Light theme: white border for CRM industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Retail & E-commerce - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Financial Services - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real Estate - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Education - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Manufacturing - Pink */

/* Single bar progress ring pseudo-elements for CRM industry cards */
.industries-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.industries-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for editorial benefits and process cards */

/* Light theme: white border for editorial benefit and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each editorial benefit card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Strategic Content - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Design Excellence - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Fast Turnaround - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Attention to Detail - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each editorial process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Content Strategy - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Writing & Editing - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Design & Layout - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Review & Finalization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring pseudo-elements for editorial benefit and process cards */
.benefits-section .benefit-item.progress-ring::before,
.process-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.benefits-section .benefit-item.progress-ring::after,
.process-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Second bar going in opposite direction for editorial benefit and process cards with different color */
.benefits-section .benefit-item.progress-ring::before,
.process-section .benefit-item.progress-ring::before {
    background:
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            color-mix(in oklab, var(--accent-2, #00E5FF) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent-2, #00E5FF) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent-2, #00E5FF) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    animation: pr-scan-reverse 2.8s linear infinite;
}

/* Single bar progress ring for CRM service cards */

/* Light theme: white border for CRM service cards */
body.light-theme .services-overview .crm-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM service card */
.services-overview .crm-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Custom CRM Development - Red */
.services-overview .crm-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* CRM Integration - Teal */
.services-overview .crm-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Data Analytics & Reporting - Yellow */
.services-overview .crm-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Mobile CRM Solutions - Purple */
.services-overview .crm-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Security & Compliance - Cyan */
.services-overview .crm-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Training & Support - Pink */

/* Single bar progress ring pseudo-elements for CRM service cards */
.services-overview .crm-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.services-overview .crm-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM feature cards */

/* Light theme: white border for CRM feature cards */
body.light-theme .features-section .feature-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM feature card */
.features-section .feature-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Contact Management - Red */
.features-section .feature-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Sales Pipeline - Teal */
.features-section .feature-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Email Marketing - Yellow */
.features-section .feature-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Communication Hub - Purple */
.features-section .feature-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Task Management - Cyan */
.features-section .feature-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Automated Notifications - Pink */

/* Single bar progress ring pseudo-elements for CRM feature cards */
.features-section .feature-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.features-section .feature-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM industry cards */

/* Light theme: white border for CRM industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Retail & E-commerce - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Financial Services - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real Estate - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Education - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Manufacturing - Pink */

/* Single bar progress ring pseudo-elements for CRM industry cards */
.industries-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.industries-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Progress ring border effect for platform cards */


/* Light theme: white border for platform cards */
body.light-theme .platforms-section .platform-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each platform card */
.platforms-section .platform-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Facebook - Red */
.platforms-section .platform-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Instagram - Teal */
.platforms-section .platform-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Twitter - Yellow */
.platforms-section .platform-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* LinkedIn - Purple */
.platforms-section .platform-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* TikTok - Cyan */
.platforms-section .platform-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* YouTube - Pink */

/* Single bar progress ring pseudo-elements for platform cards */
.platforms-section .platform-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.platforms-section .platform-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for editorial publication types cards */

/* Light theme: white border for editorial publication cards */
body.light-theme .publication-types-section .publication-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each editorial publication card */
.publication-types-section .publication-card.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Magazines & Newsletters - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.publication-types-section .publication-card.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Books & E-books - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.publication-types-section .publication-card.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Reports & Whitepapers - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.publication-types-section .publication-card.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Brochures & Catalogs - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring pseudo-elements for editorial publication cards */
.publication-types-section .publication-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.publication-types-section .publication-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Second bar going in opposite direction for editorial publication cards with different color */
.publication-types-section .publication-card.progress-ring::before {
    background:
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            color-mix(in oklab, var(--accent-2, #00E5FF) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent-2, #00E5FF) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent-2, #00E5FF) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    animation: pr-scan-reverse 2.8s linear infinite;
}

/* Single bar progress ring for CRM service cards */

/* Light theme: white border for CRM service cards */
body.light-theme .services-overview .crm-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM service card */
.services-overview .crm-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Custom CRM Development - Red */
.services-overview .crm-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* CRM Integration - Teal */
.services-overview .crm-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Data Analytics & Reporting - Yellow */
.services-overview .crm-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Mobile CRM Solutions - Purple */
.services-overview .crm-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Security & Compliance - Cyan */
.services-overview .crm-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Training & Support - Pink */

/* Single bar progress ring pseudo-elements for CRM service cards */
.services-overview .crm-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.services-overview .crm-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM feature cards */

/* Light theme: white border for CRM feature cards */
body.light-theme .features-section .feature-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM feature card */
.features-section .feature-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Contact Management - Red */
.features-section .feature-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Sales Pipeline - Teal */
.features-section .feature-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Email Marketing - Yellow */
.features-section .feature-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Communication Hub - Purple */
.features-section .feature-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Task Management - Cyan */
.features-section .feature-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Automated Notifications - Pink */

/* Single bar progress ring pseudo-elements for CRM feature cards */
.features-section .feature-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.features-section .feature-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM industry cards */

/* Light theme: white border for CRM industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Retail & E-commerce - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Financial Services - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real Estate - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Education - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Manufacturing - Pink */

/* Single bar progress ring pseudo-elements for CRM industry cards */
.industries-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.industries-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for editorial benefits and process cards */

/* Light theme: white border for editorial benefit and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each editorial benefit card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Strategic Content - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Design Excellence - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Fast Turnaround - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Attention to Detail - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each editorial process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Content Strategy - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Writing & Editing - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Design & Layout - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Review & Finalization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring pseudo-elements for editorial benefit and process cards */
.benefits-section .benefit-item.progress-ring::before,
.process-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.benefits-section .benefit-item.progress-ring::after,
.process-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Second bar going in opposite direction for editorial benefit and process cards with different color */
.benefits-section .benefit-item.progress-ring::before,
.process-section .benefit-item.progress-ring::before {
    background:
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            color-mix(in oklab, var(--accent-2, #00E5FF) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent-2, #00E5FF) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent-2, #00E5FF) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    animation: pr-scan-reverse 2.8s linear infinite;
}

/* Single bar progress ring for CRM service cards */

/* Light theme: white border for CRM service cards */
body.light-theme .services-overview .crm-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM service card */
.services-overview .crm-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Custom CRM Development - Red */
.services-overview .crm-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* CRM Integration - Teal */
.services-overview .crm-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Data Analytics & Reporting - Yellow */
.services-overview .crm-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Mobile CRM Solutions - Purple */
.services-overview .crm-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Security & Compliance - Cyan */
.services-overview .crm-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Training & Support - Pink */

/* Single bar progress ring pseudo-elements for CRM service cards */
.services-overview .crm-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.services-overview .crm-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM feature cards */

/* Light theme: white border for CRM feature cards */
body.light-theme .features-section .feature-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM feature card */
.features-section .feature-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Contact Management - Red */
.features-section .feature-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Sales Pipeline - Teal */
.features-section .feature-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Email Marketing - Yellow */
.features-section .feature-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Communication Hub - Purple */
.features-section .feature-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Task Management - Cyan */
.features-section .feature-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Automated Notifications - Pink */

/* Single bar progress ring pseudo-elements for CRM feature cards */
.features-section .feature-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.features-section .feature-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM industry cards */

/* Light theme: white border for CRM industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Retail & E-commerce - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Financial Services - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real Estate - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Education - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Manufacturing - Pink */

/* Single bar progress ring pseudo-elements for CRM industry cards */
.industries-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.industries-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Progress ring border effect for content types cards */


/* Light theme: white border for content types cards */
body.light-theme .content-types-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each content types card */
.content-types-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Written Content - Red */
.content-types-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Video Content - Teal */
.content-types-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Infographics - Yellow */
.content-types-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Visual Assets - Purple */
.content-types-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Stories & Reels - Cyan */
.content-types-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Interactive Content - Pink */

/* Single bar progress ring pseudo-elements for content types cards */
.content-types-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.content-types-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for editorial publication types cards */

/* Light theme: white border for editorial publication cards */
body.light-theme .publication-types-section .publication-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each editorial publication card */
.publication-types-section .publication-card.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Magazines & Newsletters - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.publication-types-section .publication-card.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Books & E-books - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.publication-types-section .publication-card.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Reports & Whitepapers - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.publication-types-section .publication-card.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Brochures & Catalogs - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring pseudo-elements for editorial publication cards */
.publication-types-section .publication-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.publication-types-section .publication-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Second bar going in opposite direction for editorial publication cards with different color */
.publication-types-section .publication-card.progress-ring::before {
    background:
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            color-mix(in oklab, var(--accent-2, #00E5FF) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent-2, #00E5FF) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent-2, #00E5FF) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    animation: pr-scan-reverse 2.8s linear infinite;
}

/* Single bar progress ring for CRM service cards */

/* Light theme: white border for CRM service cards */
body.light-theme .services-overview .crm-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM service card */
.services-overview .crm-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Custom CRM Development - Red */
.services-overview .crm-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* CRM Integration - Teal */
.services-overview .crm-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Data Analytics & Reporting - Yellow */
.services-overview .crm-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Mobile CRM Solutions - Purple */
.services-overview .crm-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Security & Compliance - Cyan */
.services-overview .crm-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Training & Support - Pink */

/* Single bar progress ring pseudo-elements for CRM service cards */
.services-overview .crm-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.services-overview .crm-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM feature cards */

/* Light theme: white border for CRM feature cards */
body.light-theme .features-section .feature-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM feature card */
.features-section .feature-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Contact Management - Red */
.features-section .feature-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Sales Pipeline - Teal */
.features-section .feature-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Email Marketing - Yellow */
.features-section .feature-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Communication Hub - Purple */
.features-section .feature-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Task Management - Cyan */
.features-section .feature-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Automated Notifications - Pink */

/* Single bar progress ring pseudo-elements for CRM feature cards */
.features-section .feature-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.features-section .feature-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM industry cards */

/* Light theme: white border for CRM industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Retail & E-commerce - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Financial Services - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real Estate - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Education - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Manufacturing - Pink */

/* Single bar progress ring pseudo-elements for CRM industry cards */
.industries-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.industries-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for editorial benefits and process cards */

/* Light theme: white border for editorial benefit and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each editorial benefit card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Strategic Content - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Design Excellence - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Fast Turnaround - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Attention to Detail - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each editorial process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Content Strategy - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Writing & Editing - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Design & Layout - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Review & Finalization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring pseudo-elements for editorial benefit and process cards */
.benefits-section .benefit-item.progress-ring::before,
.process-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.benefits-section .benefit-item.progress-ring::after,
.process-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Second bar going in opposite direction for editorial benefit and process cards with different color */
.benefits-section .benefit-item.progress-ring::before,
.process-section .benefit-item.progress-ring::before {
    background:
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            color-mix(in oklab, var(--accent-2, #00E5FF) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent-2, #00E5FF) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent-2, #00E5FF) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    animation: pr-scan-reverse 2.8s linear infinite;
}

/* Single bar progress ring for CRM service cards */

/* Light theme: white border for CRM service cards */
body.light-theme .services-overview .crm-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM service card */
.services-overview .crm-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Custom CRM Development - Red */
.services-overview .crm-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* CRM Integration - Teal */
.services-overview .crm-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Data Analytics & Reporting - Yellow */
.services-overview .crm-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Mobile CRM Solutions - Purple */
.services-overview .crm-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Security & Compliance - Cyan */
.services-overview .crm-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Training & Support - Pink */

/* Single bar progress ring pseudo-elements for CRM service cards */
.services-overview .crm-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.services-overview .crm-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM feature cards */

/* Light theme: white border for CRM feature cards */
body.light-theme .features-section .feature-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM feature card */
.features-section .feature-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Contact Management - Red */
.features-section .feature-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Sales Pipeline - Teal */
.features-section .feature-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Email Marketing - Yellow */
.features-section .feature-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Communication Hub - Purple */
.features-section .feature-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Task Management - Cyan */
.features-section .feature-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Automated Notifications - Pink */

/* Single bar progress ring pseudo-elements for CRM feature cards */
.features-section .feature-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.features-section .feature-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM industry cards */

/* Light theme: white border for CRM industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Retail & E-commerce - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Financial Services - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real Estate - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Education - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Manufacturing - Pink */

/* Single bar progress ring pseudo-elements for CRM industry cards */
.industries-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.industries-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for social media benefits and process cards */


/* Light theme: white border for social media benefit and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each social media benefit card */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Increased Engagement - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Brand Awareness - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Targeted Reach - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* ROI Focused - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each social media process card */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Strategy Development - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Content Creation - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Publishing & Management - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Analysis & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring pseudo-elements for social media benefit and process cards */
.benefits-section .benefit-item.progress-ring::before,
.process-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.benefits-section .benefit-item.progress-ring::after,
.process-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for editorial publication types cards */

/* Light theme: white border for editorial publication cards */
body.light-theme .publication-types-section .publication-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each editorial publication card */
.publication-types-section .publication-card.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Magazines & Newsletters - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.publication-types-section .publication-card.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Books & E-books - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.publication-types-section .publication-card.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Reports & Whitepapers - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.publication-types-section .publication-card.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Brochures & Catalogs - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring pseudo-elements for editorial publication cards */
.publication-types-section .publication-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.publication-types-section .publication-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Second bar going in opposite direction for editorial publication cards with different color */
.publication-types-section .publication-card.progress-ring::before {
    background:
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            color-mix(in oklab, var(--accent-2, #00E5FF) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent-2, #00E5FF) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent-2, #00E5FF) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    animation: pr-scan-reverse 2.8s linear infinite;
}

/* Single bar progress ring for CRM service cards */

/* Light theme: white border for CRM service cards */
body.light-theme .services-overview .crm-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM service card */
.services-overview .crm-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Custom CRM Development - Red */
.services-overview .crm-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* CRM Integration - Teal */
.services-overview .crm-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Data Analytics & Reporting - Yellow */
.services-overview .crm-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Mobile CRM Solutions - Purple */
.services-overview .crm-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Security & Compliance - Cyan */
.services-overview .crm-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Training & Support - Pink */

/* Single bar progress ring pseudo-elements for CRM service cards */
.services-overview .crm-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.services-overview .crm-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM feature cards */

/* Light theme: white border for CRM feature cards */
body.light-theme .features-section .feature-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM feature card */
.features-section .feature-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Contact Management - Red */
.features-section .feature-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Sales Pipeline - Teal */
.features-section .feature-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Email Marketing - Yellow */
.features-section .feature-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Communication Hub - Purple */
.features-section .feature-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Task Management - Cyan */
.features-section .feature-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Automated Notifications - Pink */

/* Single bar progress ring pseudo-elements for CRM feature cards */
.features-section .feature-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.features-section .feature-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM industry cards */

/* Light theme: white border for CRM industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Retail & E-commerce - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Financial Services - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real Estate - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Education - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Manufacturing - Pink */

/* Single bar progress ring pseudo-elements for CRM industry cards */
.industries-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.industries-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for editorial benefits and process cards */

/* Light theme: white border for editorial benefit and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each editorial benefit card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Strategic Content - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Design Excellence - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Fast Turnaround - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Attention to Detail - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each editorial process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Content Strategy - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Writing & Editing - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Design & Layout - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Review & Finalization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring pseudo-elements for editorial benefit and process cards */
.benefits-section .benefit-item.progress-ring::before,
.process-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.benefits-section .benefit-item.progress-ring::after,
.process-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Second bar going in opposite direction for editorial benefit and process cards with different color */
.benefits-section .benefit-item.progress-ring::before,
.process-section .benefit-item.progress-ring::before {
    background:
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            color-mix(in oklab, var(--accent-2, #00E5FF) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent-2, #00E5FF) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent-2, #00E5FF) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    animation: pr-scan-reverse 2.8s linear infinite;
}

/* Single bar progress ring for CRM service cards */

/* Light theme: white border for CRM service cards */
body.light-theme .services-overview .crm-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM service card */
.services-overview .crm-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Custom CRM Development - Red */
.services-overview .crm-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* CRM Integration - Teal */
.services-overview .crm-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Data Analytics & Reporting - Yellow */
.services-overview .crm-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Mobile CRM Solutions - Purple */
.services-overview .crm-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Security & Compliance - Cyan */
.services-overview .crm-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Training & Support - Pink */

/* Single bar progress ring pseudo-elements for CRM service cards */
.services-overview .crm-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.services-overview .crm-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM feature cards */

/* Light theme: white border for CRM feature cards */
body.light-theme .features-section .feature-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM feature card */
.features-section .feature-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Contact Management - Red */
.features-section .feature-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Sales Pipeline - Teal */
.features-section .feature-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Email Marketing - Yellow */
.features-section .feature-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Communication Hub - Purple */
.features-section .feature-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Task Management - Cyan */
.features-section .feature-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Automated Notifications - Pink */

/* Single bar progress ring pseudo-elements for CRM feature cards */
.features-section .feature-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.features-section .feature-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM industry cards */

/* Light theme: white border for CRM industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Retail & E-commerce - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Financial Services - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real Estate - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Education - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Manufacturing - Pink */

/* Single bar progress ring pseudo-elements for CRM industry cards */
.industries-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.industries-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Second bar going in opposite direction for social media benefit and process cards with different color */
.benefits-section .benefit-item.progress-ring::before,
.process-section .benefit-item.progress-ring::before {
    background:
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            color-mix(in oklab, var(--accent-2, #00E5FF) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent-2, #00E5FF) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent-2, #00E5FF) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    animation: pr-scan-reverse 2.8s linear infinite;
}

/* Single bar progress ring for CRM service cards */

/* Light theme: white border for CRM service cards */
body.light-theme .services-overview .crm-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM service card */
.services-overview .crm-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Custom CRM Development - Red */
.services-overview .crm-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* CRM Integration - Teal */
.services-overview .crm-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Data Analytics & Reporting - Yellow */
.services-overview .crm-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Mobile CRM Solutions - Purple */
.services-overview .crm-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Security & Compliance - Cyan */
.services-overview .crm-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Training & Support - Pink */

/* Single bar progress ring pseudo-elements for CRM service cards */
.services-overview .crm-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.services-overview .crm-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM feature cards */

/* Light theme: white border for CRM feature cards */
body.light-theme .features-section .feature-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM feature card */
.features-section .feature-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Contact Management - Red */
.features-section .feature-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Sales Pipeline - Teal */
.features-section .feature-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Email Marketing - Yellow */
.features-section .feature-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Communication Hub - Purple */
.features-section .feature-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Task Management - Cyan */
.features-section .feature-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Automated Notifications - Pink */

/* Single bar progress ring pseudo-elements for CRM feature cards */
.features-section .feature-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.features-section .feature-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM industry cards */

/* Light theme: white border for CRM industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Retail & E-commerce - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Financial Services - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real Estate - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Education - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Manufacturing - Pink */

/* Single bar progress ring pseudo-elements for CRM industry cards */
.industries-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.industries-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Progress ring border effect for editorial service cards */


/* Light theme: white border for editorial service cards */
body.light-theme .services-overview .editorial-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each editorial service card */
.services-overview .editorial-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Content Writing - Red */
.services-overview .editorial-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Copywriting - Teal */
.services-overview .editorial-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Publication Design - Yellow */
.services-overview .editorial-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Graphic Editorial Design - Purple */
.services-overview .editorial-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Book Publishing - Cyan */
.services-overview .editorial-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Technical Writing - Pink */

/* Single bar progress ring pseudo-elements for editorial service cards */
.services-overview .editorial-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.services-overview .editorial-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for editorial publication types cards */

/* Light theme: white border for editorial publication cards */
body.light-theme .publication-types-section .publication-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each editorial publication card */
.publication-types-section .publication-card.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Magazines & Newsletters - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.publication-types-section .publication-card.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Books & E-books - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.publication-types-section .publication-card.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Reports & Whitepapers - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.publication-types-section .publication-card.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Brochures & Catalogs - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring pseudo-elements for editorial publication cards */
.publication-types-section .publication-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.publication-types-section .publication-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Second bar going in opposite direction for editorial publication cards with different color */
.publication-types-section .publication-card.progress-ring::before {
    background:
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            color-mix(in oklab, var(--accent-2, #00E5FF) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent-2, #00E5FF) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent-2, #00E5FF) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    animation: pr-scan-reverse 2.8s linear infinite;
}

/* Single bar progress ring for CRM service cards */

/* Light theme: white border for CRM service cards */
body.light-theme .services-overview .crm-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM service card */
.services-overview .crm-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Custom CRM Development - Red */
.services-overview .crm-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* CRM Integration - Teal */
.services-overview .crm-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Data Analytics & Reporting - Yellow */
.services-overview .crm-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Mobile CRM Solutions - Purple */
.services-overview .crm-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Security & Compliance - Cyan */
.services-overview .crm-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Training & Support - Pink */

/* Single bar progress ring pseudo-elements for CRM service cards */
.services-overview .crm-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.services-overview .crm-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM feature cards */

/* Light theme: white border for CRM feature cards */
body.light-theme .features-section .feature-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM feature card */
.features-section .feature-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Contact Management - Red */
.features-section .feature-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Sales Pipeline - Teal */
.features-section .feature-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Email Marketing - Yellow */
.features-section .feature-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Communication Hub - Purple */
.features-section .feature-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Task Management - Cyan */
.features-section .feature-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Automated Notifications - Pink */

/* Single bar progress ring pseudo-elements for CRM feature cards */
.features-section .feature-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.features-section .feature-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM industry cards */

/* Light theme: white border for CRM industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Retail & E-commerce - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Financial Services - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real Estate - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Education - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Manufacturing - Pink */

/* Single bar progress ring pseudo-elements for CRM industry cards */
.industries-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.industries-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for editorial benefits and process cards */

/* Light theme: white border for editorial benefit and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each editorial benefit card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Strategic Content - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Design Excellence - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Fast Turnaround - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Attention to Detail - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each editorial process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Content Strategy - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Writing & Editing - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Design & Layout - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Review & Finalization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring pseudo-elements for editorial benefit and process cards */
.benefits-section .benefit-item.progress-ring::before,
.process-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.benefits-section .benefit-item.progress-ring::after,
.process-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Second bar going in opposite direction for editorial benefit and process cards with different color */
.benefits-section .benefit-item.progress-ring::before,
.process-section .benefit-item.progress-ring::before {
    background:
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            color-mix(in oklab, var(--accent-2, #00E5FF) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent-2, #00E5FF) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent-2, #00E5FF) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    animation: pr-scan-reverse 2.8s linear infinite;
}

/* Single bar progress ring for CRM service cards */

/* Light theme: white border for CRM service cards */
body.light-theme .services-overview .crm-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM service card */
.services-overview .crm-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Custom CRM Development - Red */
.services-overview .crm-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* CRM Integration - Teal */
.services-overview .crm-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Data Analytics & Reporting - Yellow */
.services-overview .crm-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Mobile CRM Solutions - Purple */
.services-overview .crm-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Security & Compliance - Cyan */
.services-overview .crm-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Training & Support - Pink */

/* Single bar progress ring pseudo-elements for CRM service cards */
.services-overview .crm-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.services-overview .crm-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM feature cards */

/* Light theme: white border for CRM feature cards */
body.light-theme .features-section .feature-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM feature card */
.features-section .feature-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Contact Management - Red */
.features-section .feature-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Sales Pipeline - Teal */
.features-section .feature-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Email Marketing - Yellow */
.features-section .feature-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Communication Hub - Purple */
.features-section .feature-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Task Management - Cyan */
.features-section .feature-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Automated Notifications - Pink */

/* Single bar progress ring pseudo-elements for CRM feature cards */
.features-section .feature-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.features-section .feature-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM industry cards */

/* Light theme: white border for CRM industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Retail & E-commerce - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Financial Services - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real Estate - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Education - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Manufacturing - Pink */

/* Single bar progress ring pseudo-elements for CRM industry cards */
.industries-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.industries-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Progress ring border effect for editorial expertise cards */


/* Light theme: white border for editorial expertise cards */
body.light-theme .expertise-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each editorial expertise card */
.expertise-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Academic Writing - Red */
.expertise-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Business Content - Teal */
.expertise-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Creative Writing - Yellow */
.expertise-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Technical Documentation - Purple */
.expertise-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Marketing Content - Cyan */
.expertise-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Digital Publishing - Pink */

/* Single bar progress ring pseudo-elements for editorial expertise cards */
.expertise-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.expertise-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for editorial publication types cards */

/* Light theme: white border for editorial publication cards */
body.light-theme .publication-types-section .publication-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each editorial publication card */
.publication-types-section .publication-card.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Magazines & Newsletters - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.publication-types-section .publication-card.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Books & E-books - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.publication-types-section .publication-card.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Reports & Whitepapers - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.publication-types-section .publication-card.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Brochures & Catalogs - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring pseudo-elements for editorial publication cards */
.publication-types-section .publication-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.publication-types-section .publication-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Second bar going in opposite direction for editorial publication cards with different color */
.publication-types-section .publication-card.progress-ring::before {
    background:
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            color-mix(in oklab, var(--accent-2, #00E5FF) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent-2, #00E5FF) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent-2, #00E5FF) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    animation: pr-scan-reverse 2.8s linear infinite;
}

/* Single bar progress ring for CRM service cards */

/* Light theme: white border for CRM service cards */
body.light-theme .services-overview .crm-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM service card */
.services-overview .crm-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Custom CRM Development - Red */
.services-overview .crm-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* CRM Integration - Teal */
.services-overview .crm-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Data Analytics & Reporting - Yellow */
.services-overview .crm-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Mobile CRM Solutions - Purple */
.services-overview .crm-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Security & Compliance - Cyan */
.services-overview .crm-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Training & Support - Pink */

/* Single bar progress ring pseudo-elements for CRM service cards */
.services-overview .crm-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.services-overview .crm-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM feature cards */

/* Light theme: white border for CRM feature cards */
body.light-theme .features-section .feature-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM feature card */
.features-section .feature-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Contact Management - Red */
.features-section .feature-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Sales Pipeline - Teal */
.features-section .feature-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Email Marketing - Yellow */
.features-section .feature-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Communication Hub - Purple */
.features-section .feature-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Task Management - Cyan */
.features-section .feature-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Automated Notifications - Pink */

/* Single bar progress ring pseudo-elements for CRM feature cards */
.features-section .feature-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.features-section .feature-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM industry cards */

/* Light theme: white border for CRM industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Retail & E-commerce - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Financial Services - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real Estate - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Education - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Manufacturing - Pink */

/* Single bar progress ring pseudo-elements for CRM industry cards */
.industries-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.industries-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for editorial benefits and process cards */

/* Light theme: white border for editorial benefit and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each editorial benefit card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Strategic Content - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Design Excellence - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Fast Turnaround - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Attention to Detail - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each editorial process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Content Strategy - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Writing & Editing - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Design & Layout - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Review & Finalization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring pseudo-elements for editorial benefit and process cards */
.benefits-section .benefit-item.progress-ring::before,
.process-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.benefits-section .benefit-item.progress-ring::after,
.process-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Second bar going in opposite direction for editorial benefit and process cards with different color */
.benefits-section .benefit-item.progress-ring::before,
.process-section .benefit-item.progress-ring::before {
    background:
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            color-mix(in oklab, var(--accent-2, #00E5FF) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent-2, #00E5FF) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from calc(var(--s, 0deg) + 180deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent-2, #00E5FF) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    animation: pr-scan-reverse 2.8s linear infinite;
}

/* Single bar progress ring for CRM service cards */

/* Light theme: white border for CRM service cards */
body.light-theme .services-overview .crm-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM service card */
.services-overview .crm-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Custom CRM Development - Red */
.services-overview .crm-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* CRM Integration - Teal */
.services-overview .crm-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Data Analytics & Reporting - Yellow */
.services-overview .crm-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Mobile CRM Solutions - Purple */
.services-overview .crm-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Security & Compliance - Cyan */
.services-overview .crm-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Training & Support - Pink */

/* Single bar progress ring pseudo-elements for CRM service cards */
.services-overview .crm-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.services-overview .crm-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM feature cards */

/* Light theme: white border for CRM feature cards */
body.light-theme .features-section .feature-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM feature card */
.features-section .feature-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Contact Management - Red */
.features-section .feature-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Sales Pipeline - Teal */
.features-section .feature-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Email Marketing - Yellow */
.features-section .feature-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Communication Hub - Purple */
.features-section .feature-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Task Management - Cyan */
.features-section .feature-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Automated Notifications - Pink */

/* Single bar progress ring pseudo-elements for CRM feature cards */
.features-section .feature-card.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.features-section .feature-card.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for CRM industry cards */

/* Light theme: white border for CRM industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Retail & E-commerce - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Financial Services - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real Estate - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Education - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Manufacturing - Pink */

/* Single bar progress ring pseudo-elements for CRM industry cards */
.industries-section .benefit-item.progress-ring::before {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    /*   */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.industries-section .benefit-item.progress-ring::after {
    content: "";
    position: absolute;
    inset: 0.5px;
    border-radius: inherit;
    padding: var(--ring-width, 1.5px);
    background:
        conic-gradient(from var(--s, 0deg),
            color-mix(in oklab, var(--accent, #8B5CF6) 45%, transparent) 0deg,
            color-mix(in oklab, var(--accent, #8B5CF6) 0%, transparent) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box,
        conic-gradient(from var(--s, 0deg),
            transparent 0 calc(var(--trail, 80deg) - var(--arc, 22deg)),
            color-mix(in oklab, var(--accent, #8B5CF6) 85%, transparent) calc(var(--trail, 80deg) - var(--arc, 22deg)) var(--trail, 80deg),
            transparent var(--trail, 80deg) 360deg
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: pr-scan 2.8s linear infinite;
}

/* Dual direction progress ring for CRM benefits section (Why Choose Our CRM Solutions?) */

/* Light theme: white border for CRM benefits cards */
body.light-theme .benefits-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM benefits card */
.benefits-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Increased Efficiency - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Better Insights - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Improved Relationships - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Revenue Growth - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM process section (Our CRM Development Process) */

/* Light theme: white border for CRM process cards */
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM process card */
.process-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Requirements Analysis - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* System Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Deployment & Training - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual direction progress ring for CRM tech stack section (Technology Stack We Use) */
.tech-stack-section .benefit-item.progress-ring 
/* Light theme: white border for CRM tech stack cards */
body.light-theme .tech-stack-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each CRM tech stack card */
.tech-stack-section .benefit-item.progress-ring:nth-child(1) {
    --accent: #FF6B6B; /* Frontend Technologies - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(2) {
    --accent: #4ECDC4; /* Backend Development - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(3) {
    --accent: #FECA57; /* Database Solutions - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.tech-stack-section .benefit-item.progress-ring:nth-child(4) {
    --accent: #8B5CF6; /* Cloud Platforms - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Single bar progress ring for web app service cards (Our development services include:) */
.services-overview .web-app-card.progress-ring 
/* Light theme: white border for web app service cards */
body.light-theme .services-overview .web-app-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app service card */
.services-overview .web-app-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Website Development - Red */
.services-overview .web-app-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Mobile Applications - Teal */
.services-overview .web-app-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Web Applications - Yellow */
.services-overview .web-app-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* E-commerce Solutions - Purple */
.services-overview .web-app-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Development - Cyan */
.services-overview .web-app-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Maintenance & Support - Pink */

/* Single bar progress ring for web app dev type cards (Types of Solutions We Build) */
.dev-types-section .dev-type-card.progress-ring 
/* Light theme: white border for web app dev type cards */
body.light-theme .dev-types-section .dev-type-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app dev type card */
.dev-types-section .dev-type-card.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* Corporate Websites - Red */
.dev-types-section .dev-type-card.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* E-commerce Platforms - Teal */
.dev-types-section .dev-type-card.progress-ring:nth-child(3) { --accent: #FECA57; } /* Business Applications - Yellow */
.dev-types-section .dev-type-card.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Educational Platforms - Purple */
.dev-types-section .dev-type-card.progress-ring:nth-child(5) { --accent: #00E5FF; } /* SaaS Applications - Cyan */
.dev-types-section .dev-type-card.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Mobile Apps - Pink */

/* Single bar progress ring for web app feature cards (Key Features We Implement) */

/* Light theme: white border for web app feature cards */
body.light-theme .features-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app feature card */
.features-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* User Authentication - Red */
.features-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Payment Integration - Teal */
.features-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Analytics Dashboard - Yellow */
.features-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Real-time Notifications - Purple */
.features-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* API Integration - Cyan */
.features-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Responsive Design - Pink */

/* Single bar progress ring for web app industry cards (Industries We Serve) */

/* Light theme: white border for web app industry cards */
body.light-theme .industries-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app industry card */
.industries-section .benefit-item.progress-ring:nth-child(1) { --accent: #FF6B6B; } /* E-commerce & Retail - Red */
.industries-section .benefit-item.progress-ring:nth-child(2) { --accent: #4ECDC4; } /* Healthcare - Teal */
.industries-section .benefit-item.progress-ring:nth-child(3) { --accent: #FECA57; } /* Education - Yellow */
.industries-section .benefit-item.progress-ring:nth-child(4) { --accent: #8B5CF6; } /* Finance - Purple */
.industries-section .benefit-item.progress-ring:nth-child(5) { --accent: #00E5FF; } /* Enterprise - Cyan */
.industries-section .benefit-item.progress-ring:nth-child(6) { --accent: #FF9FF3; } /* Startups - Pink */

/* Dual bar progress ring for web app benefits and process sections (Why Choose Our Development Services?, Our Development Process) */
.benefits-section .benefit-item.progress-ring,

/* Light theme: white border for web app benefits and process cards */
body.light-theme .benefits-section .benefit-item.progress-ring,
body.light-theme .process-section .benefit-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each web app benefits card (Why Choose Our Development Services?) */
.benefits-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Modern Technology - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.benefits-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* User-Centered Design - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.benefits-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Performance Optimized - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.benefits-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Security First - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Different accent colors for each web app process card (Our Development Process) */
.process-section .benefit-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Discovery & Planning - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.process-section .benefit-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Design & Prototyping - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.process-section .benefit-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Development & Testing - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.process-section .benefit-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Launch & Optimization - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for innovation section (Creative Innovation Tailored for Business) */

/* Light theme: white border for innovation cards */
body.light-theme .innovation-section .innovation-item.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each innovation card */
.innovation-section .innovation-item.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* Security - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.innovation-section .innovation-item.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* Efficiency - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.innovation-section .innovation-item.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* Integration - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.innovation-section .innovation-item.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* Scalability - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}

/* Dual bar progress ring for Index - Our Creative Portfolio (stat cards) */
.stats-container .stat-card.progress-ring {
    /*   */ /* dark gray border for stat cards */
    position: relative;
}

/* Light theme: white border for stat cards */
body.light-theme .stats-container .stat-card.progress-ring {
    --track: #ffffff; /* white border in light mode */
}

/* Different accent colors for each stat card */
.stats-container .stat-card.progress-ring:nth-child(1) { 
    --accent: #FF6B6B; /* 100+ Campaigns - Red */
    --accent-2: #00E5FF; /* Second bar - Cyan */
}
.stats-container .stat-card.progress-ring:nth-child(2) { 
    --accent: #4ECDC4; /* 95% Satisfaction - Teal */
    --accent-2: #FF9FF3; /* Second bar - Pink */
}
.stats-container .stat-card.progress-ring:nth-child(3) { 
    --accent: #FECA57; /* 50+ Websites - Yellow */
    --accent-2: #8B5CF6; /* Second bar - Purple */
}
.stats-container .stat-card.progress-ring:nth-child(4) { 
    --accent: #8B5CF6; /* 24/7 Support - Purple */
    --accent-2: #FF6B6B; /* Second bar - Red */
}
.stats-container .stat-card.progress-ring:nth-child(5) { 
    --accent: #00E5FF; /* 3x Growth - Cyan */
    --accent-2: #4ECDC4; /* Second bar - Teal */
}

/* Pseudo-elements for dual bar effect on Our Creative Portfolio */
.stats-container .stat-card.progress-ring::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: var(--ring-width, 2px);
    background: conic-gradient(from calc(var(--s, 0deg) + 180deg), 
        var(--accent-2) 0deg, 
        color-mix(in srgb, var(--accent-2) 0%, transparent) var(--trail, 70deg), 
        transparent var(--trail, 70deg), 
        transparent 360deg);
    border-radius: inherit;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    animation: pr-scan-reverse 2.8s linear infinite;
    z-index: 2;
}

.stats-container .stat-card.progress-ring::after {
    content: '';
    position: absolute;
    inset: 0;
    padding: var(--ring-width, 2px);
    background: conic-gradient(from var(--s, 0deg), 
        var(--accent) 0deg, 
        color-mix(in srgb, var(--accent) 0%, transparent) var(--trail, 70deg), 
        transparent var(--trail, 70deg), 
        transparent 360deg);
    border-radius: inherit;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    animation: pr-scan 2.8s linear infinite;
    z-index: 3;
}
/* Single bar progress ring for Clients - Featured Clients (Powering innovative brands) */
.featured-clients .service-card.progress-ring { /*   */ position: relative; }
body.light-theme .featured-clients .service-card.progress-ring { --track: #ffffff; }
.featured-clients .service-card.progress-ring:nth-child(1) { --accent: #FF6B6B; }
.featured-clients .service-card.progress-ring:nth-child(2) { --accent: #4ECDC4; }
.featured-clients .service-card.progress-ring:nth-child(3) { --accent: #FECA57; }
.featured-clients .service-card.progress-ring:nth-child(4) { --accent: #8B5CF6; }
.featured-clients .service-card.progress-ring:nth-child(5) { --accent: #00E5FF; }
.featured-clients .service-card.progress-ring:nth-child(6) { --accent: #FF9FF3; }
.featured-clients .service-card.progress-ring::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: var(--ring-width, 2px);
    background: conic-gradient(from var(--s, 0deg), 
        var(--accent) 0deg, 
        color-mix(in srgb, var(--accent) 0%, transparent) var(--trail, 70deg), 
        transparent var(--trail, 70deg), 
        transparent 360deg);
    border-radius: inherit;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    animation: pr-scan 2.8s linear infinite;
    z-index: 3;
}
