.elementor-9829 .elementor-element.elementor-element-2a921b5{--display:flex;}.elementor-9829 .elementor-element.elementor-element-2a921b5 .diteck-border-shape{width:30px;height:30px;clip-path:path("M0 0 Q0,30 30,30 L 0 30 Z");}.elementor-9829 .elementor-element.elementor-element-43aeed9 .diteck-border-shape{width:30px;height:30px;clip-path:path("M0 0 Q0,30 30,30 L 0 30 Z");}.breadcrumb-wrap .breadcrumb-overlay, .elementor-page-9829 .breadcrumb-wrap .breadcrumb-overlay{opacity:0.5;}/* Start custom CSS for wp-widget-custom_html, class: .elementor-element-43aeed9 */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    color: #2A3881;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.section-title {
    font-size: 2.5rem;
    color: #2A3881;
}

.section-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #48C6E5;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* Hero Section */
.services-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #f0fff8 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(45deg, rgba(42, 56, 129, 0.05) 0%, rgba(72, 198, 229, 0.05) 100%);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 40px;
}

.breadcrumb i {
    font-size: 0.75rem;
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.hero-description {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 600px;
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #48C6E5;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #48C6E5;
}

.cta-button:hover {
    background-color: #2A3881;
    border-color: #2A3881;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(42, 56, 129, 0.15);
}

.cta-button.outline {
    background-color: transparent;
    color: #2A3881;
    border-color: #48C6E5;
}

.cta-button.outline:hover {
    background-color: #48C6E5;
    color: white;
}

.cta-button.white {
    background-color: white;
    color: #2A3881;
    border-color: white;
}

.cta-button.white:hover {
    background-color: #2A3881;
    color: white;
    border-color: #2A3881;
}

/* Solutions Section */
.solutions-section {
    padding: 100px 0;
    background-color: white;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-description {
    color: #666;
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.solution-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    border: 1px solid #e8f4f8;
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: #48C6E5;
    transition: width 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(42, 56, 129, 0.1);
    border-color: #48C6E5;
}

.solution-card:hover::before {
    width: 100%;
    opacity: 0.1;
}

.solution-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #48C6E5 0%, #2A3881 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 1.5rem;
}

.solution-card h3 {
    font-size: 1.5rem;
    color: #2A3881;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.solution-card p {
    color: #666;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #48C6E5;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    position: relative;
    z-index: 1;
    transition: gap 0.3s ease;
}

.card-link:hover {
    gap: 12px;
    color: #2A3881;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background-color: #f8fafc;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-description {
    color: #666;
    font-size: 1.125rem;
    margin-bottom: 40px;
    line-height: 1.7;
}

.feature-list {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-item i {
    color: #48C6E5;
    font-size: 1.25rem;
}

.feature-item span {
    font-weight: 500;
    color: #2A3881;
}

.feature-image {
    position: relative;
}

.image-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #48C6E5 0%, #2A3881 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.cash-dashboard {
    background: linear-gradient(135deg, #2A3881 0%, #48C6E5 100%);
    position: relative;
}

.cash-dashboard::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

.stats-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    display: flex;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-item h4 {
    font-size: 2rem;
    color: #2A3881;
    margin-bottom: 5px;
}

.stat-item p {
    color: #666;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background-color: white;
}

.process-steps {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid #e8f4f8;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(42, 56, 129, 0.1);
    border-color: #48C6E5;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #48C6E5 0%, #2A3881 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.5rem;
    color: #2A3881;
    margin-bottom: 10px;
}

.step-content p {
    color: #666;
    line-height: 1.7;
}

.process-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px 0 10px 35px;
}

.connector-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, #48C6E5, #2A3881);
    margin-bottom: 10px;
}

.process-connector i {
    color: #48C6E5;
    font-size: 1.25rem;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background-color: #f8fafc;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.benefit-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    border: 1px solid #e8f4f8;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(42, 56, 129, 0.1);
    border-color: #48C6E5;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #48C6E5 0%, #2A3881 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    color: #2A3881;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.benefit-stats {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e8f4f8;
}

.stat-highlight {
    display: inline-block;
    background: linear-gradient(135deg, #48C6E5, #2A3881);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Algorithm Section */
.algorithm-section {
    padding: 100px 0;
    background-color: white;
}

.algorithm-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.algorithm-text p {
    color: #666;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.algorithm-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.algorithm-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.algorithm-feature i {
    color: #48C6E5;
    font-size: 2rem;
    margin-top: 5px;
}

.algorithm-feature h4 {
    font-size: 1.25rem;
    color: #2A3881;
    margin-bottom: 5px;
}

.algorithm-feature p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 0;
}

.algorithm-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-container {
    position: relative;
    width: 350px;
    height: 350px;
}

.algorithm-circle {
    position: relative;
    width: 100%;
    height: 100%;
}

.circle-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #48C6E5 0%, #2A3881 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(42, 56, 129, 0.2);
}

.circle-core i {
    font-size: 2rem;
    margin-bottom: 5px;
}

.circle-core span {
    font-weight: 600;
    font-size: 0.75rem;
    text-align: center;
}

.circle-orbits {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.orbit {
    position: absolute;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #2A3881;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #48C6E5;
}

.orbit-1 {
    top: 20%;
    left: 20%;
    animation: orbit1 20s linear infinite;
}

.orbit-2 {
    top: 20%;
    right: 20%;
    animation: orbit2 25s linear infinite;
}

.orbit-3 {
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    animation: orbit3 30s linear infinite;
}

.orbit i {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.orbit span {
    font-size: 0.7rem;
    font-weight: 600;
    text-align: center;
}

@keyframes orbit1 {
    0% { transform: rotate(0deg) translateX(60px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(60px) rotate(-360deg); }
}

@keyframes orbit2 {
    0% { transform: rotate(0deg) translateX(-60px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(-60px) rotate(-360deg); }
}

@keyframes orbit3 {
    0% { transform: rotate(0deg) translateY(60px) rotate(0deg); }
    100% { transform: rotate(360deg) translateY(60px) rotate(-360deg); }
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2A3881 0%, #48C6E5 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        gap: 50px;
    }
    
    .stats-overlay {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .algorithm-content {
        gap: 50px;
    }
    
    .visual-container {
        width: 300px;
        height: 300px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 60px 0 80px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-image {
        order: -1;
    }
    
    .image-placeholder {
        height: 300px;
    }
    
    .algorithm-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .algorithm-visual {
        order: -1;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .process-connector {
        margin-left: 0;
        margin-right: 0;
    }
    
    .solutions-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description,
    .section-description,
    .feature-description {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 0.875rem;
    }
    
    .solution-card,
    .benefit-card,
    .process-step {
        padding: 30px 20px;
    }
    
    .visual-container {
        width: 250px;
        height: 250px;
    }
    
    .circle-core {
        width: 100px;
        height: 100px;
    }
    
    .orbit {
        width: 70px;
        height: 70px;
    }
    
    .services-hero::before {
        width: 80%;
        opacity: 0.3;
    }
}/* End custom CSS */