 #myVideo {
            position: fixed;
            right: 0;
            bottom: 0;
            min-width: 100%;
            min-height: 100%;
            opacity: 0.1;
        }
        .nav-links a.active {
            color: var(--dark-secondary);
            border-bottom: 2px solid var(--dark-secondary);
        }
        /* Additional styles for enhanced technology stack */
        .tech-stack {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 5rem 0;
        }
        
        .tech-stack.dark-mode {
            background: linear-gradient(135deg, #212529 0%, #343a40 100%);
        }
        
        .tech-stack-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .tech-stack-header h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        
        .tech-stack-header h2:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 4px;
            background: #64FFDA;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .tech-stack-header p {
            max-width: 700px;
            margin: 0 auto;
            color: #6c757d;
        }
        
        .tech-stack-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .tech-category {
            background: white;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .dark-mode .tech-category {
            background: #343a40;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .tech-category:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .tech-category h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: #212529;
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        .dark-mode .tech-category h3 {
            color: #f8f9fa;
        }
        
        .tech-category h3:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background: #64FFDA;
            bottom: 0;
            left: 0;
        }
        
        .tech-items {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
            gap: 1.5rem;
        }
        
        .tech-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .tech-icon {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f8f9fa;
            border-radius: 50%;
            margin-bottom: 0.5rem;
            font-size: 1.8rem;
            color: #212529;
            transition: all 0.3s ease;
        }
        
        .dark-mode .tech-icon {
            background: #495057;
            color: #f8f9fa;
        }
        
        .tech-item:hover .tech-icon {
            background: #64FFDA;
            color: white;
            transform: scale(1.1);
        }
        
        .tech-item span {
            font-size: 0.9rem;
            font-weight: 500;
            color: #495057;
        }
        
        .dark-mode .tech-item span {
            color: #dee2e6;
        }
        
        /* Enhanced service cards */
        .service-card-large {
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s ease;
        }
        
        .service-card-large:hover {
            transform: translateY(-5px);
        }
        
        .service-icon-large {
            background: #64FFDA;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: white;
            font-size: 2rem;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .tech-stack-grid {
                grid-template-columns: 1fr;
            }
            
            .tech-items {
                grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
            }
        }
       
/* Testimonials */
.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background-color: var(--bg-lighter);
    border-radius: 10px;
    padding: 30px;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -15px rgba(2, 12, 27, 0.7);
}

.testimonial-quote {
    position: relative;
    margin-bottom: 25px;
}

.testimonial-quote i {
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 40px;
    color: rgba(100, 255, 218, 0.2);
    z-index: 0;
}

.testimonial-quote p {
    position: relative;
    z-index: 1;
    font-style: italic;
    color: var(--text-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--white);
}

.author-info p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.rating {
    color: var(--primary-color);
    font-size: 12px;
}

@media (max-width: 768px) {
    .client-stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .client-stats-container {
        grid-template-columns: 1fr;
    }
    
    .client-logos-track {
        gap: 20px;
        animation: scroll 20s linear infinite;
    }
    
    .client-logo-item {
        flex: 0 0 120px;
    }
}
       /* Enhanced Core Services Styles */
        .services-main {
            padding: 6rem 0;
            background-color: #f8f9fa;
        }
        
        .dark-mode .services-main {
            background-color: #212529;
        }
        
        .services-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .services-header h2 {
            font-size: 2.75rem;
            font-weight: 700;
            margin-bottom: 1.25rem;
            color: #212529;
            position: relative;
            display: inline-block;
        }
        
        .dark-mode .services-header h2 {
            color: #f8f9fa;
        }
        
        .services-header h2:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: #64FFDA;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .services-header p {
            font-size: 1.25rem;
            color: #6c757d;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .dark-mode .services-header p {
            color: #adb5bd;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }
        
        .service-card-large {
            background: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.05);
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .dark-mode .service-card-large {
            background: #343a40;
            border-color: rgba(255,255,255,0.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .service-card-large:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }
        
        .dark-mode .service-card-large:hover {
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        }
        
        .service-card-large::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #64FFDA, #00B4DB);
        }
        
        .service-icon-large {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.75rem;
            color: white;
            font-size: 2rem;
            background: linear-gradient(135deg, #64FFDA, #00B4DB);
            box-shadow: 0 5px 15px rgba(100, 255, 218, 0.3);
        }
        
        .service-card-large h3 {
            font-size: 1.75rem;
            font-weight: 600;
            margin-bottom: 1.25rem;
            color: #212529;
        }
        
        .dark-mode .service-card-large h3 {
            color: #f8f9fa;
        }
        
        .service-card-large p {
            color: #6c757d;
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }
        
        .dark-mode .service-card-large p {
            color: #adb5bd;
        }
        
        .service-features {
            margin-bottom: 2rem;
            flex-grow: 1;
        }
        
        .service-features li {
            position: relative;
            padding-left: 1.75rem;
            margin-bottom: 0.75rem;
            color: #495057;
            line-height: 1.6;
        }
        
        .dark-mode .service-features li {
            color: #dee2e6;
        }
        
        .service-features li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: #64FFDA;
        }
        
        .progress-container {
            margin-bottom: 2rem;
        }
        
        .progress-label {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
            color: #6c757d;
        }
        
        .dark-mode .progress-label {
            color: #adb5bd;
        }
        
        .progress-bar {
            height: 8px;
            background: #e9ecef;
            border-radius: 4px;
            overflow: hidden;
        }
        
        .dark-mode .progress-bar {
            background: #495057;
        }
        
        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #64FFDA, #00B4DB);
            border-radius: 4px;
            width: 0;
            transition: width 1.5s ease;
        }
        
        .service-btn-container {
            margin-top: auto;
            text-align: center;
        }
        
        .service-btn {
            display: inline-block;
            padding: 0.75rem 1.75rem;
            background: linear-gradient(90deg, #64FFDA, #00B4DB);
            color: #212529;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(100, 255, 218, 0.3);
            width: 100%;
            max-width: 200px;
        }
        
        .service-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(100, 255, 218, 0.4);
            color: #212529;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .services-header h2 {
                font-size: 2.25rem;
            }
            
            .services-header p {
                font-size: 1.1rem;
            }
            
            .service-card-large {
                padding: 2rem;
            }
            
            .service-btn {
                max-width: 100%;
            }
        }
        /* Specialized Solutions Styles */
    .specialized-solutions {
        padding: 6rem 0;
        background-color: #f8fafc;
    }
    
    .dark-mode .specialized-solutions {
        background-color: #1e293b;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 1rem;
    }
    
    .dark-mode .section-title {
        color: #f8fafc;
    }
    
    .section-subtitle {
        font-size: 1.25rem;
        color: #64748b;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .dark-mode .section-subtitle {
        color: #94a3b8;
    }
    
    .divider {
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #3b82f6, #8b5cf6);
        margin: 1.5rem auto 0;
        border-radius: 2px;
    }
    
    .solutions-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .solution-card {
        background: white;
        border-radius: 12px;
        padding: 2rem;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        border: 1px solid #e2e8f0;
    }
    
    .dark-mode .solution-card {
        background: #1e293b;
        border-color: #334155;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
    }
    
    .solution-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    }
    
    .dark-mode .solution-card:hover {
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    }
    
    .solution-icon {
        width: 60px;
        height: 60px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        color: white;
        font-size: 1.5rem;
        background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    }
    
    .solution-card h3 {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: #1e293b;
    }
    
    .dark-mode .solution-card h3 {
        color: #f8fafc;
    }
    
    .solution-card p {
        color: #64748b;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    
    .dark-mode .solution-card p {
        color: #94a3b8;
    }
    
    .solution-features {
        margin-bottom: 1.5rem;
    }
    
    .solution-features li {
        position: relative;
        padding-left: 1.75rem;
        margin-bottom: 0.75rem;
        color: #475569;
        line-height: 1.6;
    }
    
    .dark-mode .solution-features li {
        color: #cbd5e1;
    }
    
    .solution-features i {
        position: absolute;
        left: 0;
        color: #3b82f6;
    }
    
    .solution-badge {
        position: absolute;
        top: 1rem;
        right: -2.5rem;
        background: #10b981;
        color: white;
        padding: 0.25rem 2.5rem;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        transform: rotate(45deg);
        transform-origin: center;
        width: 120px;
        text-align: center;
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
        .solutions-grid {
            grid-template-columns: 1fr;
        }
        
        .section-title {
            font-size: 2rem;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
        }
        
        .solution-card {
            padding: 1.5rem;
        }
    }
    /* FAQ Section Styles */
    .faq-section {
        padding: 6rem 0;
        background-color: #f8fafc;
    }
    
    .dark-mode .faq-section {
        background-color: #1e293b;
    }
    
    .faq-header {
        text-align: center;
        margin-bottom: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 1rem;
    }
    
    .dark-mode .section-title {
        color: #f8fafc;
    }
    
    .section-subtitle {
        font-size: 1.25rem;
        color: #64748b;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .dark-mode .section-subtitle {
        color: #94a3b8;
    }
    
    .divider {
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #3b82f6, #8b5cf6);
        margin: 1.5rem auto 0;
        border-radius: 2px;
    }
    
    .faq-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: start;
    }
    
    .faq-image {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        height: 100%;
    }
    
    .faq-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
    }
    
    .faq-contact-card {
        position: absolute;
        bottom: 2rem;
        left: 2rem;
        right: 2rem;
        background: rgba(255, 255, 255, 0.9);
        padding: 1.5rem;
        border-radius: 8px;
        text-align: center;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }
    
    .dark-mode .faq-contact-card {
        background: rgba(30, 41, 59, 0.9);
    }
    
    .faq-contact-card h4 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
        color: #1e293b;
    }
    
    .dark-mode .faq-contact-card h4 {
        color: #f8fafc;
    }
    
    .faq-contact-card p {
        color: #64748b;
        margin-bottom: 1rem;
    }
    
    .dark-mode .faq-contact-card p {
        color: #94a3b8;
    }
    
    .faq-contact-btn {
        display: inline-block;
        padding: 0.75rem 1.5rem;
        background: linear-gradient(90deg, #3b82f6, #8b5cf6);
        color: white;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .faq-contact-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
    }
    
    .faq-accordion {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .faq-item {
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        background: white;
    }
    
    .dark-mode .faq-item {
        background: #1e293b;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    }
    
    .faq-question {
        width: 100%;
        padding: 1.5rem;
        text-align: left;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: transparent;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .faq-question:hover {
        background: #f1f5f9;
    }
    
    .dark-mode .faq-question:hover {
        background: #334155;
    }
    
    .faq-question span {
        font-size: 1.1rem;
        font-weight: 600;
        color: #1e293b;
        margin-right: 1rem;
    }
    
    .dark-mode .faq-question span {
        color: #f8fafc;
    }
    
    .faq-question i {
        color: #3b82f6;
        transition: transform 0.3s ease;
    }
    
    .faq-item.active .faq-question i {
        transform: rotate(180deg);
    }
    
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .faq-item.active .faq-answer {
        max-height: 1000px;
    }
    
    .faq-answer-content {
        padding: 0 1.5rem 1.5rem;
    }
    
    .faq-answer-content p, 
    .faq-answer-content li {
        color: #64748b;
        line-height: 1.6;
        margin-bottom: 0.75rem;
    }
    
    .dark-mode .faq-answer-content p,
    .dark-mode .faq-answer-content li {
        color: #94a3b8;
    }
    
    .faq-answer-content ul {
        padding-left: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .faq-answer-content li {
        position: relative;
        padding-left: 1rem;
    }
    
    .faq-answer-content li:before {
        content: '•';
        position: absolute;
        left: 0;
        color: #3b82f6;
    }
    
    /* Special content styles */
    .timeline-grid,
    .maintenance-plans,
    .communication-methods,
    .security-features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .timeline-item,
    .plan-card,
    .method,
    .security-item {
        background: #f1f5f9;
        padding: 1rem;
        border-radius: 8px;
    }
    
    .dark-mode .timeline-item,
    .dark-mode .plan-card,
    .dark-mode .method,
    .dark-mode .security-item {
        background: #334155;
    }
    
    .timeline-duration {
        font-weight: 600;
        color: #3b82f6;
        margin-bottom: 0.5rem;
    }
    
    .method i,
    .security-item i {
        font-size: 1.5rem;
        color: #3b82f6;
        margin-bottom: 0.5rem;
    }
    
    /* Responsive adjustments */
    @media (max-width: 992px) {
        .faq-container {
            grid-template-columns: 1fr;
        }
        
        .faq-image {
            height: 400px;
        }
    }
    
    @media (max-width: 768px) {
        .section-title {
            font-size: 2rem;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
        }
        
        .timeline-grid,
        .maintenance-plans,
        .communication-methods,
        .security-features {
            grid-template-columns: 1fr;
        }
    }
    /* Development Process Styles */
    .development-process {
        padding: 6rem 0;
        background-color: #ffffff;
        position: relative;
        overflow: hidden;
    }
    
    .dark-mode .development-process {
        background-color: #1a1a1a;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }
    
    .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 1rem;
    }
    
    .dark-mode .section-title {
        color: #f8fafc;
    }
    
    .section-subtitle {
        font-size: 1.25rem;
        color: #64748b;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .dark-mode .section-subtitle {
        color: #94a3b8;
    }
    
    .divider {
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #3b82f6, #8b5cf6);
        margin: 1.5rem auto 0;
        border-radius: 2px;
    }
    
    .process-timeline {
        position: relative;
        max-width: 900px;
        margin: 0 auto;
        padding: 2rem 0;
    }
    
    .process-timeline::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50px;
        height: 100%;
        width: 4px;
        background: linear-gradient(to bottom, #3b82f6, #8b5cf6);
        z-index: 1;
    }
    
    .process-step {
        position: relative;
        margin-bottom: 3rem;
        display: flex;
        align-items: flex-start;
    }
    
    .process-step:last-child {
        margin-bottom: 0;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #3b82f6, #8b5cf6);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: 700;
        margin-right: 2rem;
        flex-shrink: 0;
        z-index: 2;
        box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
    }
    
    .step-content {
        background: #f8fafc;
        border-radius: 12px;
        padding: 2rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        flex-grow: 1;
        transition: all 0.3s ease;
    }
    
    .dark-mode .step-content {
        background: #1e293b;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    
    .process-step:hover .step-content {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .dark-mode .process-step:hover .step-content {
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        color: white;
        font-size: 1.5rem;
        background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    }
    
    .step-content h3 {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: #1e293b;
    }
    
    .dark-mode .step-content h3 {
        color: #f8fafc;
    }
    
    .step-content p {
        color: #64748b;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    
    .dark-mode .step-content p {
        color: #94a3b8;
    }
    
    .step-details ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .step-details li {
        position: relative;
        padding-left: 1.75rem;
        color: #475569;
        line-height: 1.6;
    }
    
    .dark-mode .step-details li {
        color: #cbd5e1;
    }
    
    .step-details i {
        position: absolute;
        left: 0;
        color: #3b82f6;
    }
    
    .process-cta {
        text-align: center;
        margin-top: 4rem;
    }
    
    .process-cta p {
        font-size: 1.25rem;
        color: #64748b;
        margin-bottom: 1.5rem;
    }
    
    .dark-mode .process-cta p {
        color: #94a3b8;
    }
    
    .cta-button {
        display: inline-block;
        padding: 1rem 2rem;
        background: linear-gradient(90deg, #3b82f6, #8b5cf6);
        color: white;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
    }
    
    .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
        .process-timeline::before {
            left: 25px;
        }
        
        .step-number {
            width: 40px;
            height: 40px;
            font-size: 1.25rem;
            margin-right: 1.5rem;
        }
        
        .step-content {
            padding: 1.5rem;
        }
        
        .step-details ul {
            grid-template-columns: 1fr;
        }
        
        .section-title {
            font-size: 2rem;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
        }
    }