.elementor-700 .elementor-element.elementor-element-7125de8{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-19076d8 *//* ===== Premium Background ===== */

.smo-section {
    background: linear-gradient(135deg,#020024,#090979,#00d4ff);
    padding: 90px 20px;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Animated Background Glow */

.smo-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle,
                rgba(255,255,255,0.2),
                transparent);
    top: -150px;
    left: -150px;
    animation: moveGlow 8s infinite linear;
}

@keyframes moveGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* ===== Title ===== */

.smo-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 60px;
    letter-spacing: 1px;
}


/* ===== Grid ===== */

.smo-packages {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}


/* ===== Premium Card ===== */

.smo-card {

    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(15px);

    width: 310px;
    padding: 35px 25px;
    border-radius: 20px;

    position: relative;

    border: 1px solid rgba(255,255,255,0.25);

    transition: 0.5s;

    box-shadow:
        0 15px 40px rgba(0,0,0,0.4);

}


/* Gradient Border Animation */

.smo-card::before {

    content: "";
    position: absolute;
    inset: -2px;

    background: linear-gradient(
        45deg,
        #00f7ff,
        #ff00c8,
        #00f7ff
    );

    z-index: -1;
    border-radius: 22px;

    opacity: 0;
    transition: 0.5s;

}

.smo-card:hover::before {

    opacity: 1;

}


/* Hover Lift */

.smo-card:hover {

    transform: translateY(-15px) scale(1.03);

    box-shadow:
        0 25px 60px rgba(0,0,0,0.6);

}


/* ===== Ribbon ===== */

.ribbon {

    position: absolute;
    top: -12px;
    right: -12px;

    background: linear-gradient(
        135deg,
        #ff416c,
        #ff4b2b
    );

    color: white;

    padding: 7px 16px;

    font-size: 12px;

    border-radius: 30px;

    font-weight: bold;

    box-shadow:
        0 5px 15px rgba(0,0,0,0.3);

}


/* ===== Package Name ===== */

.package-name {

    font-size: 26px;
    font-weight: 700;

    color: white;

    margin-bottom: 12px;

}


/* ===== Price ===== */

.price {

    font-size: 38px;
    font-weight: bold;

    background: linear-gradient(
        45deg,
        #00f7ff,
        #ff00c8
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    margin-bottom: 25px;

}


/* ===== Features ===== */

.features {

    list-style: none;
    padding: 0;
    margin-bottom: 28px;

}

.features li {

    padding: 10px 0;

    border-bottom:
        1px solid rgba(255,255,255,0.15);

    color: white;

    font-size: 15px;

    transition: 0.3s;

}

.features li:hover {

    padding-left: 6px;

    color: #00f7ff;

}


/* ===== Premium Button ===== */

.btn {

    display: block;

    text-align: center;

    background: linear-gradient(
        45deg,
        #ff416c,
        #ff4b2b
    );

    color: white;

    padding: 13px;

    border-radius: 40px;

    font-weight: bold;

    text-decoration: none;

    letter-spacing: 0.5px;

    transition: 0.4s;

}


/* Button Hover Glow */

.btn:hover {

    transform: scale(1.07);

    box-shadow:
        0 0 20px rgba(255,65,108,0.7);

}


/* ===== Responsive ===== */

@media(max-width:768px) {

    .smo-title {
        font-size: 32px;
    }

    .smo-card {
        width: 90%;
    }

}/* End custom CSS */