body {
    font-family: "Inter", sans-serif;
}

.header {
    backdrop-filter: blur(18px);
    background: linear-gradient(to top,
            rgba(255, 255, 255, 0.55),
            rgba(255, 255, 255, 0.25));
    border: 2px solid #333;
    box-shadow: inset 5px 5px 10px rgba(0, 0, 0, 0.3);
    border-radius: 50%;
}

.blure-frame {
    backdrop-filter: blur(18px);
    background: linear-gradient(to top,
            rgba(255, 255, 255, 0.55),
            rgba(255, 255, 255, 0.25));
}

.info-card {
    background: white;
    padding: 22px 28px;
    border-radius: 18px;
    text-align: center;
    font-weight: 500;
    color: #555;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.connector-left,
.connector-right {
    position: absolute;
    top: 50%;
    width: 120px;
    height: 250px;
    border: 2px dashed #ef4444;
    border-radius: 100px;
    transform: translateY(-50%);
}

.connector-left {
    left: 33%;
    border-right: none;
}

.connector-right {
    right: 33%;
    border-left: none;
}

.side-card {
    background: #ffffff;
    padding: 22px 30px;
    border-radius: 18px;
    text-align: center;
    font-weight: 500;
    color: #444;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.side-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}




.aff-side-card {
    background: #ffffff;
    padding: 22px 30px;
    border-radius: 18px;
    text-align: center;
    font-weight: 500;
    color: #444;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

/* ============================= */
/*  CONNECTOR BASE              */
/* ============================= */
.aff-connector {
    position: absolute;
    top: 50%;
    width: 70px;
    height: 260px;
    transform: translateY(-50%);
}

/* LEFT CONNECTOR */
.aff-connector-left {
    left: 34%;
    border-left: 2px dashed #ef4444;
    border-radius: 40px;
}

/* RIGHT CONNECTOR */
.aff-connector-right {
    right: 34%;
    border-right: 2px dashed #ef4444;
    border-radius: 40px;
}

/* HORIZONTAL CONNECTOR LINE */
.aff-connector-horizontal {
    position: absolute;
    top: 50%;
    width: 70px;
    border-top: 2px dashed #ef4444;
    transform: translateY(-50%);
}

.aff-connector-left .aff-connector-horizontal {
    left: -70px;
}

.aff-connector-right .aff-connector-horizontal {
    right: -70px;
}


.dashed-vertical {
    position: absolute;
    top: 10%;
    bottom: 10%;
    width: 0;
    border-left: 2px dashed #ef4444;
}

/* Horizontal dashed line */
.dashed-horizontal {
    position: absolute;
    width: 60px;
    border-top: 2px dashed #ef4444;
}


/* Icon 3D Circle */
.icon-wrapper {
    position: relative;
    width: 65px;
    height: 65px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 100, 100, 0.2)) padding-box,
        linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 0, 0, 0.4)) border-box;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.icon-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 0, 0, 0.4), transparent 70%);
    filter: blur(12px);
    border-radius: 50%;
    z-index: 0;
}

.icon-circle {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    background:
        radial-gradient(circle at 50% 40%,
            rgba(255, 255, 255, 0.8) 0%,
            rgba(255, 255, 255, 0) 50%),
        radial-gradient(circle at 50% 50%,
            rgba(255, 100, 100, 0.4) 0%,
            rgba(255, 50, 50, 0.2) 60%,
            rgba(255, 255, 255, 0.1) 100%);

    border: 1.5px solid rgba(255, 255, 255, 0.4);


    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.5),
        inset 0 -4px 8px rgba(255, 0, 0, 0.2),
        0 8px 20px rgba(255, 50, 50, 0.25);

    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    overflow: hidden;

}

.icon-circle i {
    color: #FF0000;
}

/* Card style */
.value-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px 20px 30px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}


/* Service Page */
.fbaSwiper .swiper-slide {
    height: 450px;
    transition: all 0.5s ease;
    opacity: 1;
    transform: scale(0.96);
}

.fbaSwiper .swiper-slide .card-content {
    transition: all 0.5s ease;
    height: 100%;
}

.fbaSwiper .swiper-slide .card-content .step-num {
    transition: all 0.5s ease;
}

.fbaSwiper .swiper-slide-active .card-content {
    border: 1px solid #f1f1f1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}