/* Webority Component Library */


/* Proper Vertical Marquee Animation */

#feature-list-1 {
    overflow: hidden;
    height: 900px;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
}


/* Feature List 2 - Opposite Direction */

#feature-list-2 {
    overflow: hidden;
    height: 900px;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.marquee-container {
    display: flex;
    flex-direction: column;
    will-change: transform;
    animation: marqueeVertical 15s linear infinite;
}


/* Opposite animation for feature-list-2 */

#feature-list-2 .marquee-container {
    animation: marqueeVerticalReverse 15s linear infinite;
}

.marquee-container .feature-card-common {
    margin-bottom: clamp(1rem, 2vw, 2rem);
    background: #141414;
    background: linear-gradient(142deg, rgba(20, 20, 20, 1) 70%, rgba(122, 122, 122, 1) 150%);
    flex-shrink: 0;
    /* filter: blur(54px); */
    padding: clamp(30px, 4vw, 50px) clamp(30px, 4vw, 50px) clamp(60px, 8vw, 100px);
}

.light-theme-marquee .marquee-container .feature-card-common {
    margin-bottom: clamp(1rem, 2vw, 2rem);
    background: #141414;
    background: linear-gradient(122.79deg, rgba(245, 245, 245, 1) 69.57%, rgba(181, 181, 195, 1) 130.34%);
    flex-shrink: 0;
    /* filter: blur(54px); */
    padding: 50px 50px 60px;
    min-height: 280px;
}

@keyframes marqueeVertical {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

@keyframes marqueeVerticalReverse {
    0% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(0);
    }
}


/* Buttons */


/* Common Button Styles for Webority */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Josefin Sans', Arial, sans-serif;
    font-weight: bold;
    border: none;
    outline: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border 0.2s, opacity 0.2s;
    gap: 8px;
}


/* Size Variants */

.btn-lg {
    font-size: clamp(1.125rem, 1vw + 1rem, 1rem);
    height: clamp(56px, 8vw, 68px);
    border-radius: clamp(32px, 6vw, 48px);
    padding: 0 clamp(20px, 4vw, 30px);
    font-weight: 600;
    padding-top: 3px;
}

.btn-md {
    font-size: clamp(1rem, 0.8vw + 0.9rem, 1.125rem);
    font-weight: 600;
    height: clamp(40px, 6vw, 52px);
    border-radius: clamp(28px, 5vw, 44px);
    padding: 0 clamp(18px, 4vw, 30px);
        padding-top: 3px;
}

.btn-sm {
    font-size: clamp(0.675rem, 0.7vw + 0.8rem, 0.775rem);
    font-weight: 600;
    height: clamp(30px, 4vw, 38px);
    border-radius: clamp(28px, 4vw, 44px);
    padding: 0 clamp(12px, 3vw, 24px);
}


/* Primary Variant */

.btn-primary {
    background: #ff4400;
    color: #fff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #cc2e00 0%, #cc2e00 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover:not(:disabled) {
    background: #ff6a2c;
    transform: translateY(0px);
}

.btn-primary:active:not(:disabled) {
    background: #d63a00;
    transform: translateY(0px);
}

.btn-primary:disabled {
    background: #ffd2c2;
    color: #fff;
    opacity: 0.7;
    cursor: not-allowed;
}


/* Secondary Variant (Outlined) */

.btn-secondary {
    background: #fff;
    color: #171a21;
    border: 1.5px solid #171a21;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary) 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    left: 0;
}

.btn-secondary:hover:not(:disabled) {
    background: #f5f5f5;
    color: #ffffff;
    transform: translateY(0px);
    border-color: var(--secondary);
}

.btn-secondary:active:not(:disabled) {
    background: var(--secondary);
    color: #ffffff;
    transform: translateY(0px);
    border-color: var(--secondary);
}

.btn-secondary:disabled {
    color: #171a21;
    border-color: #171a21;
    opacity: 0.7;
    cursor: not-allowed;
}


/* Text Variant */

.btn-text {
    background: none;
    color: #ff4400;
    border: none;
    padding: 0 8px;
}

.btn-text:hover:not(:disabled) {
    color: #d63a00;
}

.btn-text:active:not(:disabled) {
    color: #ff4400;
    text-decoration: underline;
}

.btn-text:disabled {
    color: #ffd2c2;
    opacity: 0.7;
    cursor: not-allowed;
}


/* Icon (arrow) styling if needed */

.btn i {
    margin-left: 6px;
    font-size: 20px;
    display: inline-block;
    padding-top: 2px;
}


/* CTA Button Enhanced Styles - secondary Color Theme */

.btn-outline-secondary {
    border: 1px solid var(--secondary);
    color: var(--secondary);
    background: var(--white);
    border-radius: 50px;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-outline-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary) 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-outline-secondary:hover::before {
    left: 0;
}

.btn-outline-secondary:hover {
    color: white !important;
    border-color: transparent !important;
    transform: translateY(0px);
}

header .hover-bg-secondary:hover {
    background-color: transparent !important;
}


/* Cards */

.card {
    background-color: var(--white);
    border: 1px solid var(--outline);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all var(--transition-base);
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.card-header {
    padding: var(--space-6);
    border-bottom: 1px solid var(--outline);
}

.card-body {
    padding: var(--space-6);
}

.card-footer {
    padding: var(--space-6);
    border-top: 1px solid var(--outline);
    background-color: var(--bg-light);
}


/* Badge */

.badge {
    display: inline-flex;
    align-items: center;
    padding: var(--space-1) var(--space-3);
    font-size: var(--fs-xs);
    font-weight: var(--fw-medium);
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-primary {
    background-color: var(--primary-10);
    color: var(--primary);
}

.badge-success {
    background-color: var(--success-10);
    color: var(--success);
}

.badge-warning {
    background-color: var(--warning-10);
    color: var(--warning);
}

.badge-alert {
    background-color: var(--alert-10);
    color: var(--alert);
}

.badge-info {
    background-color: var(--informative-10);
    color: var(--informative);
}


/* Alert */

.alert {
    padding: var(--space-4);
    border-radius: var(--radius-md);
    border: 1px solid;
    margin-bottom: var(--space-4);
}

.alert-success {
    background-color: var(--success-10);
    border-color: var(--success-30);
    color: var(--success);
}

.alert-warning {
    background-color: var(--warning-10);
    border-color: var(--warning-30);
    color: var(--warning);
}

.alert-error {
    background-color: var(--alert-10);
    border-color: var(--alert-30);
    color: var(--alert);
}

.alert-info {
    background-color: var(--informative-10);
    border-color: var(--informative-30);
    color: var(--informative);
}


/* Form Controls */

.form-group {
    margin-bottom: var(--space-4);
}

.form-label {
    display: block;
    font-weight: var(--fw-medium);
    margin-bottom: var(--space-2);
    color: var(--text-1);
}

.form-control {
    display: block;
    width: 100%;
    padding: var(--space-3) var(--space-4);
    padding-left: 0;
    font-size: var(--fs-base);
    line-height: var(--lh-normal);
    color: var(--text-1);
    background-color: var(--white);
    transition: all var(--transition-fast);
    border: none;
    border-bottom: 1px solid #B5B5C3;
    border-radius: 0;
    box-shadow: none;
}

.form-control::placeholder {
    color: var(--text-2) !important;
}

/* .form-control:invalid {
    border-color: var(--alert);
} */

/* .form-control:invalid:focus {
    box-shadow: 0 0 0 3px var(--alert-20);
} */

.form-help {
    font-size: var(--fs-sm);
    color: var(--text-2);
    margin-top: var(--space-1);
}

.form-error {
    font-size: var(--fs-sm);
    color: var(--alert);
    margin-top: var(--space-1);
}


/* Navigation */

.nav {
    display: flex;
    align-items: center;
    gap: var(--space-6);
}

.nav-link {
    display: flex;
    align-items: center;
    padding: var(--space-2) var(--space-4);
    color: var(--text-1);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary);
    background-color: var(--primary-10);
}

.nav-link.active {
    color: var(--primary);
    background-color: var(--primary-10);
    font-weight: var(--fw-medium);
}


/* Header */

.header {
    background-color: var(--white);
    border-bottom: 1px solid var(--outline);
    padding: var(--space-4) 0;
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    color: var(--heading);
    text-decoration: none;
}


/* Hero Section */

.hero {
    background: linear-gradient(135deg, var(--primary-10) 0%, var(--informative-10) 100%);
    padding: var(--space-20) 0;
    text-align: center;
}

.hero-title {
    font-size: var(--fs-6xl);
    font-weight: var(--fw-extrabold);
    margin-bottom: var(--space-6);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: var(--fs-xl);
    color: var(--text-2);
    margin-bottom: var(--space-8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


/* Feature Grid */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
    margin: var(--space-16) 0;
}

.feature-card {
    text-align: center;
    padding: var(--space-8);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-4);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-30) 100%);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: var(--fs-2xl);
}


/* Section */

.section {
    padding: var(--space-20) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-subtitle {
    text-align: center;
    font-size: var(--fs-xl);
    color: var(--text-2);
    margin-bottom: var(--space-8);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}


/* Footer */

.footer {
    background-color: var(--secondary);
    color: var(--secondary-20);
    padding: var(--space-20) 0 var(--space-8);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-8);
    margin-bottom: var(--space-12);
}

.footer-section h4 {
    color: white;
    margin-bottom: var(--space-4);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: var(--space-2);
}

.footer-links a {
    color: var(--secondary-20);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-8);
    border-top: 1px solid var(--secondary-50);
    color: var(--secondary-30);
}


/* checkbox */

input.form-check-input#ndaCheck {
    border-radius: 50% !important;
    width: clamp(1.1rem, 2vw, 1.5rem) !important;
    height: clamp(1.1rem, 2vw, 1.5rem) !important;
    margin-right: 8px;
}

input#ndaCheck:checked,
input.form-check-input#ndaCheck:checked {
    background-color: #ff4400 !important;
    border-color: #ff4400 !important;
    box-shadow: none !important;
}

.form-check-input:focus {
    border-color: #ebedf3 !important;
    box-shadow: none !important;
}


/* phone input */

.phone-input {
    padding-left: 58px;
}


/* Modal */


/* .modal {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
display: flex;
align-items: center;
justify-content: center;
z-index: var(--z-modal);
opacity: 0;
visibility: hidden;
transition: all var(--transition-base);
}

.modal.active {
opacity: 1;
visibility: visible;
}

.modal-content {
background-color: var(--white);
border-radius: var(--radius-xl);
padding: var(--space-8);
max-width: 500px;
width: 90%;
max-height: 90vh;
overflow-y: auto;
transform: scale(0.8);
transition: transform var(--transition-base);
}

.modal.active .modal-content {
transform: scale(1);
} */


/* Loading Spinner */

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--outline);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


/* Responsive utilities */

@media (max-width: 768px) {
    .hero-title {
        font-size: var(--fs-4xl);
    }
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .nav {
        flex-direction: column;
        gap: var(--space-4);
    }
    .header-content {
        flex-direction: column;
        gap: var(--space-4);
    }
}


/* ===== TESTIMONIALS DESIGN ===== */

.testimonials-header h2 {
    text-align: left;
    margin-bottom: 2rem;
}


/* Navigation buttons under heading - Left side */

.testimonial-nav-wrapper-left {
    display: flex;
    gap: 24px;
    margin-top: 50px;
}


/* Right side testimonials wrapper */

.testimonials-wrapper-right {
    overflow: hidden;
    max-width: 100%;
}

.testimonials-wrapper-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23000000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 0;
    border-radius: 20px;
}

.testimonials-carousel {
    position: relative;
    z-index: 1;
    overflow: hidden;
    /* Keep contained within wrapper */
}


/* Testimonial item spacing */

.testimonial-item {
    padding: 0;
    /* Remove padding since we're using margins now */
}


/* Testimonial card design */

.testimonials .glow-separator {
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(196 196 196 / 80%) 50%, rgba(255, 255, 255, 0) 100%);
}

.testimonial-text {
    position: relative;
    margin-bottom: 1rem;
    padding: 1.9rem;
}

.client-details {
    padding-left: 1.9rem;
    padding-bottom: 1.9rem;
}

.testimonial-text p {
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 0;
    font-size: var(--fs-18);
    font-family: 'Josefin Sans', serif;
    font-weight: 400;
    color: #181C32;
}


/* Client info at bottom of card */

.client-info-card {
    display: flex;
    align-items: center;
    padding-top: 0.75rem;
    position: relative;
}

.client-photo-small {
    flex-shrink: 0;
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 180px;
    z-index: -1;
}

.client-photo-small img {
    width: 100% !important;
    height: 100%;
    object-fit: cover;
}

.client-details h4 {
    font-weight: 600;
    font-size: var(--fs-32);
    color: var(--secondary) !important;
    font-family: 'Josefin Sans', serif;
}

.client-details p {
    font-size: var(--fs-18);
    font-family: 'Josefin Sans', serif;
    font-weight: 500;
    color: var(--text-2);
}


/* Navigation buttons styling */

.nav-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 1px solid var(--secondary);
    background: white;
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #161a21;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgb(0 0 0 / 30%);
}

.nav-btn:active {
    transform: scale(0.95);
}

button#nextBtn i,
button#prevBtn i {
    height: -webkit-fill-available;
    display: flex;
    align-items: center;
    font-size: 26px;
}


/* OwlCarousel specific overrides */

.testimonials-carousel.owl-carousel .testimonial-item {
    display: block;
}

.testimonials-carousel .owl-dots {
    display: none;
}

.testimonials-carousel .owl-nav {
    display: none;
}

.testimonials-carousel .owl-stage-outer {
    padding: 0 !important;
    overflow: hidden !important;
    /* Keep contained within right side */
}

.testimonials-carousel .owl-stage {
    padding: 0 !important;
    display: flex !important;
    align-items: stretch;
    /* Ensure equal height */
}


/* Ensure equal height for all carousel items */

.testimonials-carousel .owl-item {
    display: flex;
    align-items: stretch;
    width: 50% !important;
    /* Force each item to take exactly half width */
}

.testimonials-carousel .owl-item:last-child {
    width: 50% !important;
    /* Ensure last item (partial) is also half width */
}

.testimonials-carousel .owl-item .testimonial-item {
    display: flex;
    width: 100%;
    border: 1px solid rgb(244 244 244);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
    height: auto;
    min-height: 280px;
    margin-left: 4px;
    background-color: #ffffff;
    background: linear-gradient(144deg, rgb(255 255 255) 70%, #FFAE90 115%);
}

.testimonials-carousel .owl-item .testimonial-content-card {
    /* display: flex;
    flex-direction: column; */
    width: 100%;
    height: 100%;
}


/* Partial card styling - make it slightly transparent to indicate it's not active */

.testimonials-carousel .owl-item:last-child .testimonial-content-card {
    opacity: 0.8;
    transform: scale(0.98);
}

.testimonials-carousel .owl-item:first-child .testimonial-content-card {
    opacity: 1;
    transform: scale(1);
}


/* Fallback for when OwlCarousel doesn't load */

.testimonials-carousel .testimonial-item {
    display: block;
}

.testimonials-carousel .testimonial-item:not(:first-child) {
    display: none;
}

.leading-relaxed {
    line-height: 1.75;
}


/* ==========================================
Enhanced Circular Progress Bar Styles
========================================== */

.progressBarBx {
    margin-top: 2rem;
    padding: 1rem 0;
}

.progress-circle-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
    opacity: 0;
    animation: progressSlideIn 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.progress-circle-container:nth-child(1) {
    animation-delay: 0.2s;
}

.progress-circle-container:nth-child(2) {
    animation-delay: 0.4s;
}

.progress-circle-container.progress-animating {
    transform: translateY(-5px);
}

.progress-circle {
    position: relative;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, filter;
}

.progress-circle svg {
    transform: rotate(-90deg);
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 8px rgba(255, 107, 53, 0.1));
}

.progress-bar-circle {
    transition: stroke-dashoffset 3s cubic-bezier(0.25, 0.1, 0.25, 1), 
    stroke 0.4s cubic-bezier(0.23, 1, 0.32, 1),
    filter 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    stroke-linecap: round;
    stroke-linejoin: round;
    will-change: stroke-dashoffset, stroke, filter;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 1.5rem;
    color: #333;
    display: flex;
    align-items: baseline;
    justify-content: center;
    transition: transform 0.3s ease;
    will-change: transform;
}

.progress-number {
    font-size: 32px;
    color: #181C32;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    text-shadow: 0 2px 4px rgba(255, 107, 53, 0.1);
    will-change: transform;
    padding-top: 4px;
}

.progress-symbol {
    font-size: 22px;
    color: #181C32;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    text-shadow: 0 2px 4px rgba(255, 107, 53, 0.1);
    will-change: transform;
}

/* Enhanced Hover Effects */
.progress-circle-container:hover {
    transform: translateY(-8px);
}

.progress-circle-container:hover .progress-circle {
    transform: scale(1.05);
}

.progress-circle-container:hover .progress-circle-container {
    transform: translateY(-2px) !important;
}

.progress-circle-container h5 {
    transition: all 0.3s ease;
    will-change: transform;
    font-size: 24px;
    margin-top: 10px;
    font-family: 'Josefin Sans', serif;
    font-weight: 400;
    font-style: normal;
    text-align: left;
}

.progress-circle-container:hover h5 {
    transform: translateY(-2px);
    color: #FF4400 !important;
}

/* Responsive Design */

@media (max-width: 768px) {
    .progress-circle svg {
        width: 100px;
        height: 100px;
    }
    .progress-number {
        font-size: 1.5rem;
    }
    .progress-symbol {
        font-size: 1rem;
    }
    .progressBarBx .col-lg-6 {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .progress-circle svg {
        width: 90px;
        height: 90px;
    }
    .progress-number {
        font-size: 1.3rem;
    }
    .progress-circle-container h5 {
        font-size: 1rem;
    }
}


/* Enhanced Animation Keyframes */

@keyframes progressPulse {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 2px 8px rgba(255, 107, 53, 0.1));
    }
    50% {
        transform: scale(1.02);
        filter: drop-shadow(0 4px 16px rgba(255, 107, 53, 0.2));
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0 2px 8px rgba(255, 107, 53, 0.1));
    }
}

@keyframes numberGlow {
    0% {
        text-shadow: 0 2px 4px rgba(255, 107, 53, 0.1);
    }
    50% {
        text-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
    }
    100% {
        text-shadow: 0 2px 4px rgba(255, 107, 53, 0.1);
    }
}

@keyframes progressSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes progressAnimation {
    from {
        stroke-dashoffset: 314.16;
    }
    to {
        stroke-dashoffset: var(--target-offset);
    }
}


/* Performance optimizations */

.progress-circle-container,
.progress-circle,
.progress-bar-circle,
.progress-number,
.progress-symbol {
    backface-visibility: hidden;
    transform-style: preserve-3d;
}