:root {
    --primary-blue: #00a8ff;
    --secondary-blue: #4169e1;
    --green: #00a86b;
    --purple: #9b59b6;
    --orange: #d35400;
    --dark-bg: #0a1628;
    --card-bg: rgba(30, 42, 62, 0.6);
}

.integration-card {
    background: var(--card-bg);
    border: 1px solid rgba(100, 150, 200, 0.3);
    border-radius: 12px;
    padding: 18px 25px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
    /* margin-bottom: 20px; */
    height: 100%;
}

.integration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 150, 255, 0.2);
}

.card-primary {
    border: 2px solid var(--primary-blue);
    background: rgba(0, 168, 255, 0.1);
}

.card-highlight {
    border: 2px solid var(--secondary-blue);
    background: rgba(65, 105, 225, 0.15);
}

.card-green {
    border: 2px solid var(--green);
    background: rgba(0, 168, 107, 0.15);
}

.card-purple {
    border: 2px solid var(--purple);
    background: rgba(155, 89, 182, 0.15);
}

.card-orange {
    border: 2px solid var(--orange);
    background: rgba(211, 84, 0, 0.15);
}

.card-title-text {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.card-subtitle-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    /* margin-bottom: 15px; */
}

.feature-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.feature-list li {
    font-size: 13px;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.feature-list li::before {
    content: "●";
    color: var(--primary-blue);
    position: absolute;
    left: 0;
}

.badge-custom {
    display: inline-block;
    background: rgba(0, 168, 255, 0.2);
    color: #00d4ff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-top: 5px;
}

.section-heading {
    text-align: center;
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: 500;
}

.additional-card {
    background: rgba(30, 42, 62, 0.4);
    border-radius: 12px;
    /* padding: 30px; */
    padding: 18px 25px;
    text-align: center;
    border: 1px solid rgba(100, 150, 200, 0.3);
    height: 100%;
}

.additional-card.cyan {
    border: 2px solid #00d4ff;
}

.additional-card.yellow {
    border: 2px solid #f39c12;
}

.additional-card.violet {
    border: 2px solid #8e44ad;
}

.connections-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 99;
}

.content-wrapper {
    position: relative;
    z-index: 999;
}

.connection-line {
    fill: none;
    stroke: #00a8ff;
    stroke-width: 2;
    opacity: 0.6;
}

.particle {
    fill: #00d4ff;
    opacity: 0;
}

@media (max-width: 768px) {
    .integration-card {
        margin-bottom: 15px;
    }
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    margin: 0 auto 15px;
    font-weight: 600;
    color: #ccc;
}

.step-circle.active {
    border: 2px solid #00c8d4;
    color: #00c8d4;
}

.benefit-box {
    background: #0F191D;
    border: 1px solid #22222A;
    border-radius: 12px;
    padding: 25px;
}

.bi-check-circle-fill {
    color: #00BCD4;
    font-size: 1.2rem;
    margin-right: 10px;
}
.swiper-pagination-bullet{
    background: #fafafa !important;
}