.elementor-9812 .elementor-element.elementor-element-e021b65{--display:flex;}.elementor-9812 .elementor-element.elementor-element-e021b65 .diteck-border-shape{width:30px;height:30px;clip-path:path("M0 0 Q0,30 30,30 L 0 30 Z");}.elementor-9812 .elementor-element.elementor-element-f02f3f9 .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-9812 .breadcrumb-wrap .breadcrumb-overlay{opacity:0.5;}/* Start custom CSS for wp-widget-custom_html, class: .elementor-element-f02f3f9 *//* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
    overflow-x: hidden;
}

.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 */
.banking-hero {
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4f8 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.banking-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(45deg, rgba(42, 56, 129, 0.08) 0%, rgba(72, 198, 229, 0.08) 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;
    opacity: 0.6;
}

.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;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat-item {
    background: white;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(42, 56, 129, 0.1);
    min-width: 180px;
}

.stat-item h4 {
    font-size: 2rem;
    color: #48C6E5;
    margin-bottom: 5px;
}

.stat-item p {
    color: #666;
    font-size: 0.875rem;
    font-weight: 500;
}

/* 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;
    cursor: pointer;
}

.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.white {
    background-color: white;
    color: #2A3881;
    border-color: white;
}

.cta-button.white:hover {
    background-color: #f0f7ff;
    color: #2A3881;
}

.cta-button.outline-white {
    background-color: transparent;
    color: white;
    border-color: white;
}

.cta-button.outline-white:hover {
    background-color: white;
    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(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.solution-card {
    background: #f8fafc;
    border-radius: 16px;
    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: 100%;
    height: 4px;
    background: linear-gradient(90deg, #48C6E5 0%, #2A3881 100%);
    transition: height 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 {
    height: 6px;
}

.solution-card.featured {
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4f8 100%);
    border-color: #48C6E5;
}

.solution-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #48C6E5 0%, #2A3881 100%);
    border-radius: 16px;
    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;
}

.solution-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.features-list span {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(72, 198, 229, 0.1);
    color: #2A3881;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.features-list i {
    color: #48C6E5;
    font-size: 0.75rem;
}

/* Security Section */
.security-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4f8 100%);
}

.security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.security-description {
    color: #666;
    font-size: 1.125rem;
    margin-bottom: 40px;
    line-height: 1.7;
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #48C6E5 0%, #2A3881 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.25rem;
    color: #2A3881;
    margin-bottom: 5px;
}

.feature-item p {
    color: #666;
    font-size: 0.875rem;
}

.security-visual {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(42, 56, 129, 0.1);
}

.visual-card {
    border: 2px solid #e8f4f8;
    border-radius: 12px;
    overflow: hidden;
}

.visual-header {
    background: linear-gradient(90deg, #48C6E5 0%, #2A3881 100%);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.visual-header h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.status {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.visual-content {
    padding: 30px;
}

.metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e8f4f8;
}

.metric:last-child {
    border-bottom: none;
}

.value {
    font-weight: 700;
    color: #2A3881;
    font-size: 1.25rem;
}

.value.success {
    color: #48C6E5;
}

.security-level {
    margin-top: 30px;
}

.level-bar {
    height: 8px;
    background: #e8f4f8;
    border-radius: 4px;
    margin: 10px 0;
    overflow: hidden;
}

.level-fill {
    height: 100%;
    background: linear-gradient(90deg, #48C6E5 0%, #2A3881 100%);
    border-radius: 4px;
}

.level-text {
    font-weight: 600;
    color: #48C6E5;
    font-size: 0.875rem;
}

/* Integration Section */
.integration-section {
    padding: 100px 0;
    background-color: white;
}

.integration-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.integration-description {
    color: #666;
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.integration-partners {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.partner-logo {
    background: #f8fafc;
    border: 2px solid #e8f4f8;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    border-color: #48C6E5;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(42, 56, 129, 0.1);
}

.partner-logo i {
    font-size: 2.5rem;
    color: #48C6E5;
    margin-bottom: 15px;
    display: block;
}

.partner-logo span {
    color: #2A3881;
    font-weight: 600;
    font-size: 0.875rem;
}

/* CTA Section */
.banking-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #2A3881 0%, #48C6E5 100%);
    color: white;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta-text h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
}

.cta-text p {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 500px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .security-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .security-visual {
        order: -1;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .banking-hero {
        padding: 60px 0 80px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-item {
        min-width: 100%;
    }
    
    .integration-partners {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description,
    .section-description,
    .security-description,
    .integration-description {
        font-size: 1rem;
    }
    
    .solution-card {
        padding: 30px 20px;
    }
    
    .features-list {
        flex-direction: column;
        gap: 8px;
    }
    
    .integration-partners {
        grid-template-columns: 1fr;
    }
    
    .banking-hero::before {
        width: 100%;
        opacity: 0.3;
    }
    
    .visual-content {
        padding: 20px;
    }
}/* End custom CSS */