.gradient-text {
    background: linear-gradient(135deg, #1bb1dc, #413e66);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* VPS CTA button */
.vps-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    background: linear-gradient(90deg, #1bb1dc, #413e66);
    color: #fff;
    box-shadow: 0 8px 28px rgba(27, 177, 220, 0.25);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.vps-cta:hover {
    transform: translateY(-4px) scale(1.05);
    background: linear-gradient(90deg, #413e66, #1bb1dc);
    box-shadow: 0 14px 40px rgba(27, 177, 220, 0.45);
}

/* Subtle moving shine */
.vps-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    transform: translateX(-100%);
    transition: transform 0.7s ease;
    border-radius: inherit;
}

.vps-cta:hover::before {
    transform: translateX(100%);
}

/* Arrow motion */
.vps-cta .arrow {
    display: inline-block;
    transition: transform 0.4s ease;
}

.vps-cta:hover .arrow {
    transform: translateX(8px);
}

@media (max-width: 575.98px) {
    .hosting-hero {
        padding: 3rem 1rem;
    }

    .vps-cta {
        padding: 10px 22px;
        font-size: 15px;
    }
}

/* ===================
1. Vps Hero Section
====================== */
:root {
    --brand-a: #1bb1dc;
    --brand-b: #413e66;
    --bg-dark: #06060a;
    --glass: rgba(255, 255, 255, 0.06);
}

.ox-vps-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: #fff;
    background: linear-gradient(180deg, #06060a, #0a0a12);
    overflow: hidden;

    perspective: 2000px;
    background: url("../img/vps-hero-bg.png") center/cover no-repeat;
}

.ox-vps-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .8);
    backdrop-filter: blur(2px);
    z-index: 0;
}

.ox-vps-hero .hero-inner {
    position: relative;
    z-index: 10;

    margin-top: 1rem;
    margin-bottom: 3rem;
    padding: 3rem 2rem;
}

.ox-vps-hero .hero-inner .col-lg-7,
.ox-vps-hero .hero-inner .col-lg-8 {
    flex: 1;
}

.ox-vps-hero .hero-glass {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 94%;
    height: 86%;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, .01));
    box-shadow: 0 8px 60px rgba(7, 7, 10, .7);
    backdrop-filter: blur(8px) saturate(120%);
    z-index: 2;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, .03);
}

.ox-vps-hero .vps-title {
    font-weight: 800;
    line-height: 1.03;
    font-size: 3.2rem;
    margin: 0 0 18px;
    color: #fff;
    letter-spacing: -0.02em;
}

.ox-vps-hero .vps-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .92);
    margin-bottom: 28px;
    max-width: 56ch;
    line-height: 1.65;
    letter-spacing: .2px;
}

.ox-vps-hero .vps-actions {
    display: flex;
    gap: 14px;
    margin-top: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.ox-vps-hero .pill {
    padding: 8px 12px;
    background: rgba(255, 255, 255, .03);
    border-radius: 999px;
    font-weight: 600;
    font-size: .92rem;
}

.ox-vps-hero .server-card {
    width: 380px;
    height: 360px;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1400px;
}

.ox-vps-hero .server-stack {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 260px;
    height: 100%;
}

.ox-vps-hero .server-layer.layer-1 {
    transform: translateY(0) translateZ(40px);
}

.ox-vps-hero .server-layer.layer-2 {
    transform: translateY(72px) translateZ(18px);
}

.ox-vps-hero .server-layer.layer-3 {
    transform: translateY(144px) translateZ(-5px);
}

.ox-vps-hero .server-layer.layer-4 {
    transform: translateY(216px) translateZ(-28px);
}

.ox-vps-hero .server-layer.layer-5 {
    transform: translateY(288px) translateZ(-50px);
}


.ox-vps-hero .server-layer {
    position: absolute;
    left: 0;
    right: 0;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(0, 0, 0, .06));
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, .04);
    box-shadow: 0 18px 40px rgba(7, 7, 10, .6), 0 8px 30px rgba(27, 177, 220, .06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    color: rgba(255, 255, 255, .95);
}

.ox-vps-hero .server-layer .left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ox-vps-hero .server-led {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    box-shadow: 0 0 14px rgba(27, 177, 220, .8);
}

.ox-vps-hero .server-layer .meta {
    font-size: .82rem;
    opacity: .9;
}

.ox-vps-hero .layer-1 {
    transform: translateY(0) translateZ(40px);
}

.ox-vps-hero .layer-2 {
    transform: translateY(68px) translateZ(18px);
}

.ox-vps-hero .layer-3 {
    transform: translateY(136px) translateZ(-5px);
}

.ox-vps-hero .layer-4 {
    transform: translateY(204px) translateZ(-28px);
}

.ox-vps-hero .layer-5 {
    transform: translateY(272px) translateZ(-50px);
}

.ox-vps-hero .gradient-led1 {
    background: linear-gradient(90deg, var(--brand-a), var(--brand-b));
}

.ox-vps-hero .gradient-led2 {
    background: linear-gradient(90deg, #fff, var(--brand-a));
}

.ox-vps-hero .gradient-led3 {
    background: linear-gradient(90deg, var(--brand-b), #fff);
}

.ox-vps-hero .gradient-led4 {
    background: linear-gradient(90deg, var(--brand-b), var(--brand-a));
}

.ox-vps-hero .server-glow {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 8%;
    width: 420px;
    height: 120px;
    border-radius: 999px;
    filter: blur(36px);
    opacity: .7;
    background: radial-gradient(closest-side, rgba(27, 177, 220, .28), transparent);
}

.ox-vps-hero .tld-icons span {
    position: absolute;
    font-weight: 700;
    color: rgba(27, 177, 220, .4);
    font-size: 1.2rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    animation: floatTLD 30s linear infinite;
}

@keyframes floatTLD {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) translateY(0);
    }

    50% {
        transform: translate(-50%, -50%) rotate(180deg) translateY(-40px);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg) translateY(0);
    }
}

.ox-vps-hero .holo-gradient {
    position: absolute;
    inset: -20% -10% -20% -10%;
    background: radial-gradient(40% 30% at 10% 20%, rgba(27, 177, 220, .08), transparent 10%), radial-gradient(30% 20% at 80% 70%, rgba(65, 62, 102, .08), transparent 10%), linear-gradient(135deg, rgba(27, 177, 220, .06), rgba(65, 62, 102, .06));
    filter: blur(40px) saturate(120%);
    transform: translateZ(0);
    mix-blend-mode: screen;
    animation: holoMove 28s ease-in-out infinite;
}

@keyframes holoMove {
    0% {
        transform: translateX(0) translateY(0) scale(1);
    }

    50% {
        transform: translateX(-30px) translateY(18px) scale(1.03);
    }

    100% {
        transform: translateX(0) translateY(0) scale(1);
    }
}

.ox-vps-hero .neon-grid {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(0deg, rgba(27, 177, 220, .03) 0 1px, transparent 1px 80px), repeating-linear-gradient(90deg, rgba(27, 177, 220, .02) 0 1px, transparent 1px 80px);
    opacity: .12;
    transform: translateZ(0);
    mix-blend-mode: overlay;
    animation: gridFloat 40s linear infinite;
}

@keyframes gridFloat {
    from {
        background-position: 0 0, 0 0
    }

    to {
        background-position: 200px 200px, 200px 200px
    }
}

.ox-vps-hero .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
    opacity: .5;
    mix-blend-mode: screen;
}

.ox-vps-hero .orb.a {
    width: 420px;
    height: 420px;
    left: -10%;
    top: 10%;
    background: linear-gradient(45deg, var(--brand-a), rgba(27, 177, 220, .05));
}

.ox-vps-hero .orb.b {
    width: 260px;
    height: 260px;
    right: -6%;
    top: 20%;
    background: linear-gradient(45deg, rgba(255, 255, 255, .06), var(--brand-b));
}

.ox-vps-hero .orb.c {
    width: 140px;
    height: 140px;
    left: 20%;
    bottom: 8%;
    background: linear-gradient(45deg, var(--brand-b), var(--brand-a));
    opacity: .28;
}


.ox-vps-hero .swiper-pagination .swiper-pagination-bullet {
    width: 40px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .3);
    backdrop-filter: blur(6px) saturate(120%);
    box-shadow: 0 4px 12px rgba(27, 177, 220, .12);
    overflow: hidden;
    cursor: pointer;
    transition: transform .35s ease, box-shadow .35s ease;
}

.ox-vps-hero .swiper-pagination .swiper-pagination-bullet:hover {
    transform: scale(1.3);
    box-shadow: 0 6px 20px rgba(27, 177, 220, .25);
}

.ox-vps-hero .swiper-pagination .swiper-pagination-bullet-active {
    transform: scale(1.2);
    box-shadow: 0 6px 24px rgba(27, 177, 220, .35), 0 0 14px rgba(27, 177, 220, .4) inset;
}

.ox-vps-hero .swiper-pagination .swiper-pagination-bullet::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--brand-a), var(--brand-b));
    border-radius: 999px;
    transition: width .2s ease;
}

.ox-vps-hero .swiper-pagination .swiper-pagination-bullet-active::after {
    width: 100%;
    animation: neonProgress 6.5s linear infinite;
}

@keyframes neonProgress {
    0% {
        width: 100%;
        opacity: 1
    }

    50% {
        width: 100%;
        opacity: .85
    }

    100% {
        width: 100%;
        opacity: .6
    }
}

.ox-vps-hero .swiper-pagination .swiper-pagination-bullet::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 999px;
    box-shadow: 0 0 12px rgba(27, 177, 220, .18);
    pointer-events: none;
}

/* Responsive adjustments */
@media(min-width:769px) {
    .ox-vps-hero .swiper-pagination {
        bottom: -3rem !important;
    }
}

@media(max-width:1024px) {
    .ox-vps-hero .vps-title {
        font-size: 2.4rem
    }
}

@media(max-width:769px) {
    .ox-vps-hero {
        min-height: unset;
        height: auto;
    }

    .ox-vps-hero .pill {
        font-size: .8rem;
        padding: 7px 10px;
    }

    .ox-vps-hero .orb.a {
        width: 220px;
        height: 220px;
    }

    .ox-vps-hero .price-box .btn-cta {

        padding: 7px 14px;
        font-size: .9rem;
    }
}

@media(max-width:520px) {
    .ox-vps-hero .vps-title {
        font-size: 1.6rem
    }

    .ox-vps-hero .vps-desc {
        font-size: .98rem
    }

    .ox-vps-hero .server-layer {
        height: 42px;
        border-radius: 10px
    }

    .ox-vps-hero .hero-glass {
        height: 92%;
        width: 96%;
        border-radius: 12px
    }

    .ox-vps-hero .swiper-pagination-wrapper {
        margin-top: 30px;
    }
}

/* ===================
2. Ox VPS Features Section
====================== */
.ox-vps-features {
    background: #f8fafc;
    padding-top: 80px;
    padding-bottom: 60px;
}

.oxnames-text-gradient {
    background: linear-gradient(90deg, #1bb1dc, #413e66);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ox-vps-features .feature-card {
    background: #fff;
    border-radius: 1.8rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(65, 62, 102, 0.08);
    transition: all 0.35s ease, transform 0.35s ease;
    position: relative;
}

.ox-vps-features .feature-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 18px 40px rgba(65, 62, 102, 0.15);
}

.ox-vps-features .feature-icon-wrap {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    font-size: 2rem;
    color: #fff;
    background: linear-gradient(135deg, #1bb1dc, #413e66);
    border-radius: 50%;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ox-vps-features .feature-card:hover .feature-icon-wrap {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 8px 25px rgba(27, 177, 220, 0.4);
}

.ox-vps-features .feature-card h3 {
    font-size: 22px;
    margin-bottom: 0.5rem;
}

/* Connector lines */
.ox-vps-features .connector-line {
    width: 2px;
    height: 120px;
    background: linear-gradient(180deg, #1bb1dc, #413e66);
    border-radius: 2px;
}

.ox-vps-features .connector-line.reverse {
    background: linear-gradient(0deg, #1bb1dc, #413e66);
}

/* Background visuals */
.ox-vps-features .bg-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(65, 62, 102, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
}

.ox-vps-features .blur-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    z-index: 0;
}

.ox-vps-features .blur-circle-1 {
    width: 250px;
    height: 250px;
    top: -40px;
    left: -60px;
    background: #1bb1dc;
}

.ox-vps-features .blur-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -60px;
    right: -80px;
    background: #413e66;
}

/* Responsive */
@media (max-width: 991px) {
    .ox-vps-features {
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .ox-vps-features .connector-line {
        display: none;
    }

    .ox-vps-features .feature-card {
        text-align: center;
    }

    .ox-vps-features .feature-card h3 {
        font-size: 18px;
    }

    .ox-vps-features .feature-icon-wrap {
        margin: 0 auto;
        width: 60px;
        height: 60px;
    }

}

/* ===================
3. Vps Plans Section
====================== */
:root {
    --ox-primary: #1bb1dc;
    --ox-dark: #413e66;
    --accent-1: #1bb1dc;
    /* Starter */
    --accent-2: #ff6f61;
    /* Business */
    --accent-3: #7c3aed;
    /* Enterprise */
    --accent-4: #f7b347;
    /* Ultimate softened */
    --bg: #f7fbff;
    --card-radius: 20px;
    --muted: #7b8693;
    --badge-shadow: rgba(27, 177, 220, 0.18);
}

.ox-vps-plans {
    color: var(--ox-dark);
}

.ox-vps-plans::before,
.ox-vps-plans::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.4;
    animation: float 18s infinite ease-in-out;
}

.ox-vps-plans::before {
    top: -100px;
    left: -150px;
    background: #1bb1dc;
}

.ox-vps-plans::after {
    bottom: -120px;
    right: -100px;
    background: #6f63e8;
}

/* Toggle Pill */
.toggle-pill,
.hf-toggle-pill {
    display: inline-flex;
    background: #e0e6f2;
    border-radius: 50px;
    overflow: hidden;
    user-select: none;
    font-weight: bold;
    color: #555;
    transition: 0.3s;
}

.toggle-pill input,
.hf-toggle-pill input {
    display: none;
}

.toggle-pill label,
.hf-toggle-pill label {
    font-weight: bold;
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
}

.toggle-pill label:hover,
.hf-toggle-pill label:hover {
    background: #d0e4f9;
}

.toggle-pill input:checked+label,
.hf-toggle-pill input:checked+label {
    background: linear-gradient(135deg, #1bb1dc, #6f63e8);
    color: #fff;
}

.toggle-pill .badge,
.hf-toggle-pill .badge {
    background: #ff5722;
    color: #fff;
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
    border-radius: 0.4rem;
    margin-left: 0.3rem;
}

/* Plan cards */
.plan-card {
    position: relative;
    background: #fff;
    border-radius: var(--card-radius);
    padding: 36px 28px;
    box-shadow: 0 16px 40px rgba(27, 177, 220, 0.08);
    box-shadow: 0 16px 60px rgba(0, 162, 211, 0.2);
    margin-top: 1rem;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 80px rgba(27, 177, 220, 0.12);
}

.plan-card:hover .icon-wrap {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 14px 40px rgba(27, 177, 220, 0.3);
}

.plan-card.featured {
    border: 2px solid rgba(27, 177, 220, 0.25);
    transform: translateY(-4px);
}

.plan-card.featured {
    border: 2px solid rgba(255, 111, 97, 0.3);
    background: #fff;
    transform: translateY(-4px);
    position: relative;
}

.plan-card.featured::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--card-radius);
    background: linear-gradient(135deg, rgba(255, 111, 97, 0.05), rgba(255, 111, 97, 0));
    pointer-events: none;
    /* doesn’t block clicks */
    z-index: 0;
}

.plan-card.featured .btn-cta {
    background: linear-gradient(90deg, #ff6f61, #ff4b3f);
    box-shadow: 0 6px 20px rgba(255, 111, 97, 0.1);
    font-weight: 700;
}

.plan-card.featured .btn-cta:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 10px 28px rgba(255, 111, 97, 0.15);
}

/* Plans Badges */
.badge-floating {
    position: absolute;
    top: -16px;
    left: 20px;
    letter-spacing: 0.5px;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 24px;
    border-radius: 999px;
    color: #fff;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    z-index: 1;
    transition: transform 0.3s ease, background 0.3s ease;
}

.plan-1 .badge-floating {
    background: linear-gradient(135deg, var(--accent-1), var(--ox-dark));
}

.plan-2 .badge-floating {
    background: linear-gradient(135deg, var(--accent-2), var(--ox-dark));
}

.plan-3 .badge-floating {
    background: linear-gradient(135deg, var(--accent-3), var(--ox-dark));
}

.plan-4 .badge-floating {
    background: linear-gradient(135deg, var(--accent-4), var(--ox-dark));
}

/* Icons */
.icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    margin-bottom: 14px;
    box-shadow: 0 10px 28px rgba(27, 177, 220, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-1 .icon-wrap {
    background: linear-gradient(135deg, var(--accent-1), var(--ox-dark));
}

.plan-2 .icon-wrap {
    background: linear-gradient(135deg, var(--accent-2), var(--ox-dark));
}

.plan-3 .icon-wrap {
    background: linear-gradient(135deg, var(--accent-3), var(--ox-dark));
}

.plan-4 .icon-wrap {
    background: linear-gradient(135deg, var(--accent-4), var(--ox-dark));
}

/* Title Desc */
.plan-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--ox-primary), var(--ox-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.plan-desc {
    font-size: 0.88rem;
    color: var(--muted);
    text-align: center;
    line-height: 1.5;
}

/* Plans Features */
.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}

/* Feature Icons*/
.feature i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(27, 177, 220, 0.08);
    font-size: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-1 .feature i {
    background: rgba(27, 177, 220, 0.15);
    color: var(--accent-1);
}

.plan-2 .feature i {
    background: rgba(255, 111, 97, 0.15);
    color: var(--accent-2);
}

.plan-3 .feature i {
    background: rgba(124, 58, 237, 0.15);
    color: var(--accent-3);
}

.plan-4 .feature i {
    background: rgba(247, 179, 71, 0.15);
    color: var(--accent-4);
}

.feature:hover i {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ox-dark);
}

/* Tooltip */
/* info tooltip */
.info-icon {
    position: relative;
    cursor: pointer;
}

.info-icon svg {
    display: block;
}

.tooltip {
    position: absolute;
    /* will be moved via JS */
    background: #413e66;
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 0.4rem;
    /* white-space: nowrap; */
    font-size: 0.85rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease-in-out;
    z-index: 9999;
    width: 260px;
}

.info-icon .tooltip::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

/* Large screens: tooltip right side, arrow pointing left */
@media (min-width: 769px) {
    .info-icon .tooltip::after {
        border-width: 5px 5px 5px 0;
        border-color: transparent #413e66 transparent transparent;
        left: -5px;
        /* position at left edge of tooltip */
        top: 50%;
        transform: translateY(-50%);
    }
}

/* Small screens: tooltip above or below, arrow pointing up/down */
@media (max-width: 768px) {
    .info-icon .tooltip::after {
        border-width: 0 5px 5px 5px;
        border-color: transparent transparent #413e66 transparent;
        top: -5px;
        /* if tooltip below, points up */
        left: 50%;
        transform: translateX(-50%);
    }
}

.tooltip .tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

/* Price box */
.price-box {
    padding: 26px 18px;
    border-radius: 18px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-1 .price-box {
    background: linear-gradient(135deg, rgba(27, 177, 220, 0.08), rgba(27, 177, 220, 0.03));
}

.plan-2 .price-box {
    background: linear-gradient(135deg, rgba(255, 111, 97, 0.08), rgba(255, 111, 97, 0.03));
}

.plan-3 .price-box {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(124, 58, 237, 0.03));
}

.plan-4 .price-box {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(245, 158, 11, 0.03));
}

.price-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 20px rgba(0, 0, 0, 0.08);
}

/* Price */
.price-amount {
    font-size: 2rem;
    font-weight: 800;
}

.plan-1 .price-amount,
.plan-1 .currency-symbol {
    color: var(--accent-1);
}

.plan-2 .price-amount,
.plan-2 .currency-symbol {
    color: var(--accent-2);
}

.plan-3 .price-amount,
.plan-3 .currency-symbol {
    color: var(--accent-3);
}

.plan-4 .price-amount,
.plan-4 .currency-symbol {
    color: var(--accent-4);
}

.currency-symbol {
    font-size: 2rem;
    font-weight: 800;
    margin-right: 3.5px;
}

.price-period.per {
    font-size: 0.95rem;
    align-self: flex-end;
    margin-left: 1px;
    color: #757f95;
}

/* Save % Badge Position */
.price-note {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 10px;
    color: #1b3a2a;
    background-color: #A8E6A1;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    margin-bottom: 10px;
}

/* Price box buttons */
.price-box .btn-cta {
    display: inline-block;
    border-radius: 999px;
    padding: 12px 26px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-box .plan-1 .btn-cta {
    background: linear-gradient(90deg, var(--accent-1), var(--ox-dark));
}

.price-box .plan-2 .btn-cta {
    background: linear-gradient(90deg, var(--accent-2), var(--ox-dark));
}

.price-box .plan-3 .btn-cta {
    background: linear-gradient(90deg, var(--accent-3), var(--ox-dark));
}

.price-box .plan-4 .btn-cta {
    background: linear-gradient(90deg, var(--accent-4), var(--ox-dark));
}

.price-box .btn-cta:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
    .plan-card {
        padding: 36px 17px;
    }

    .badge-floating {
        left: 50%;
        transform: translateX(-50%) rotate(-2deg);
    }
}

/* ===================
4. Cta Section
====================== */
.oxnames-cta-section {
    background: radial-gradient(circle at top left, #0d0f21, #14183d);
}

/* Background Orbs */
.oxnames-cta-section .cta-bg-orbs .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    animation: floatOrb 30s linear infinite alternate;
}

.oxnames-cta-section .cta-bg-orbs .orb-a {
    width: 400px;
    height: 400px;
    top: 10%;
    left: 5%;
    background: linear-gradient(135deg, #1bb1dc, #413e66);
}

.oxnames-cta-section .cta-bg-orbs .orb-b {
    width: 300px;
    height: 300px;
    top: 60%;
    left: 20%;
    background: linear-gradient(135deg, #413e66, #1bb1dc);
}

.oxnames-cta-section .cta-bg-orbs .orb-c {
    width: 500px;
    height: 500px;
    top: 30%;
    left: 70%;
    background: linear-gradient(135deg, #1bb1dc, #00ffe0);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #1bb1dc, #413e66);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(27, 177, 220, 0.3);
}

/* CTA Buttons */
.oxnames-cta-section .btn-cta-primary {
    background: linear-gradient(135deg, #1bb1dc, #00ffe0);
    color: #fff;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 0.8rem;
    box-shadow: 0 0 20px rgba(27, 177, 220, 0.4);
    transition: all 0.3s ease;
}

.oxnames-cta-section .btn-cta-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 35px rgba(27, 177, 220, 0.6);
}

.oxnames-cta-section .btn-cta-secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 0.8rem;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.oxnames-cta-section .btn-cta-secondary:hover {
    background: rgba(27, 177, 220, 0.1);
    transform: translateY(-3px) scale(1.05);
}

/* Responsive */
@media(max-width:768px) {
    .oxnames-cta-section {
        padding: 80px 20px;
    }

    .oxnames-cta-section .btn-cta-primary,
    .oxnames-cta-section .btn-cta-secondary {
        padding: 0.5rem 1.2rem;
    }
}

@media(max-width:576px) {
    .oxnames-cta-section {
        padding: 60px 15px;
    }

    .oxnames-cta-section h2.display-5 {
        font-size: 2rem;
    }
}

/* ===================
5. Why Choose VPS Section
====================== */
.why-choose-vps {
    padding: 100px 0;
}

/* CTA Button */
.btn-cta {
    display: inline-block;
    padding: 14px 28px;
    font-weight: 700;
    color: #fff;
    border-radius: 999px;
    background: linear-gradient(90deg, #1bb1dc, #413e66);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 16px 40px rgba(27, 177, 220, 0.3);
    color: #eeecec;
}

.why-choose-vps .feature-content h3 {
    font-size: 18px;
}

.why-choose-vps .feature-icon {
    flex: 0 0 60px;
    /* prevent shrinking and set fixed width */
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    /* ensure min height */
    background: linear-gradient(135deg, #1bb1dc, #413e66);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-choose-vps .feature-icon img {
    object-fit: contain;
}

.why-choose-vps .feature-icon:hover {
    transform: scale(1.2);
    box-shadow: 0 12px 30px rgba(27, 177, 220, 0.35);
}

/* Floating Icons */
.why-choose-vps .vps-floating {
    position: relative;
}

.why-choose-vps .floating-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    transition: transform 0.4s ease;
}


/* Background Shapes */
.why-choose-vps .bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    z-index: 0;
}

.why-choose-vps .circle-1 {
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
}

.why-choose-vps .circle-2 {
    top: -30px;
    right: 0;
    width: 200px;
    height: 200px;
}

/* Wave Divider */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 100px;
}

/* Responsive */
@media(max-width:768px) {

    .btn-cta {
        padding: 8px 14px;
    }
}

@media(max-width:991px) {
    .why-choose-vps {
        padding: 60px 0;
    }

    .vps-floating {
        height: 300px;
    }

    .why-choose-vps .feature-icon {
        width: 50px;
        height: 50px;
    }

    .why-choose-vps .floating-icon {
        width: 60px;
        height: 60px;
    }
}


/* ===================
6. Vps cPanel Section
====================== */
/* Background */
.sh-ox-cpanel-section {
    background: #f4f6fb;
}

/* cPanel PNG */
.sh-ox-cpanel-png {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(27, 177, 220, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sh-ox-cpanel-png:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 40px 80px rgba(27, 177, 220, 0.15);
}

/* Floating Circle */
.sh-ox-floating-circle-left {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: #1bb1dc;
    opacity: 0.08;
    top: -40px;
    left: -40px;
}

/* Feature Cards */
.sh-ox-feature-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sh-ox-feature-card {
    position: relative;
    padding-left: 30px;
}

.sh-ox-accent-line {
    position: absolute;
    left: 12px;
    top: 6px;
    bottom: 6px;
    width: 4px;
    background: #1bb1dc;
    border-radius: 2px;
}

.sh-ox-feature-content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    padding: 18px 22px;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(27, 177, 220, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.sh-ox-feature-content:hover {
    transform: translateX(8px);
    box-shadow: 0 30px 60px rgba(27, 177, 220, 0.15);
}

.sh-ox-feature-icon {
    width: 45px;
    height: 45px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Title & Text */
.sh-ox-title {
    font-size: 2.8rem;
    font-weight: 700;
}

.sh-ox-gradient-text {
    background: linear-gradient(135deg, #1bb1dc, #413e66);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sh-ox-feature-card h3 {
    font-size: 18px;
}

.sh-ox-lead {
    font-size: 1.15rem;
    color: #6c757d;
}

/* Responsive */
@media(max-width:991px) {
    .sh-ox-title {
        font-size: 1.9rem;
    }

    .sh-ox-cpanel-png {
        max-width: 100%;
        margin-bottom: 30px;
    }
}


/* ===================
7. Global Network Section
====================== */
.oxnames-global-network {
    background: radial-gradient(circle at top left, #0d0f21, #14183d);
    padding: 100px 0;
}

/* Background Orbs */
.network-bg-orbs .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    animation: floatOrb 25s linear infinite alternate;
}

.oxnames-global-network .orb-a {
    width: 400px;
    height: 400px;
    top: 10%;
    left: 5%;
    background: linear-gradient(135deg, #1bb1dc, #413e66);
}

.oxnames-global-network .orb-b {
    width: 300px;
    height: 300px;
    top: 60%;
    left: 15%;
    background: linear-gradient(135deg, #413e66, #1bb1dc);
}

.oxnames-global-network .orb-c {
    width: 500px;
    height: 500px;
    top: 30%;
    left: 70%;
    background: linear-gradient(135deg, #1bb1dc, #00ffe0);
}

@keyframes floatOrb {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Network Map Container */
.network-map {
    position: relative;
    width: 100%;
    height: 400px;
    background: radial-gradient(circle at center, rgba(27, 177, 220, 0.02), transparent 70%);
    border-radius: 1rem;
}

/* Nodes */
.network-orb {
    position: absolute;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1bb1dc, #413e66);
    box-shadow: 0 0 20px rgba(27, 177, 220, 0.7);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    animation: floatNode 6s ease-in-out infinite alternate;
}

.network-orb:hover {
    transform: scale(1.8);
    box-shadow: 0 0 40px rgba(27, 177, 220, 1);
}

@keyframes floatNode {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}

/* SVG Lines */
.network-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    stroke-linecap: round;
}

.oxnames-global-network .flow-line {
    stroke-dasharray: 5 5;
    animation: dashFlow 2s linear infinite;
}

@keyframes dashFlow {
    0% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: 20;
    }
}

/* Particles */
.oxnames-global-network .flow-particle {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #1bb1dc;
    box-shadow: 0 0 12px rgba(27, 177, 220, 0.8);
}

/* Node Info Panel */
.node-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #00ffe0;
}

.node-info p {
    font-size: 0.95rem;
    color: #fff;
}

/* Responsive */
@media(max-width:768px) {
    .network-map {
        height: 300px;
    }

    .oxnames-global-network {
        padding: 60px 0;
        padding-bottom: 30px;
    }
}

@media(max-width:576px) {
    .network-map {
        height: 220px;
    }
}

/* ===================
8. Security Section
====================== */
.oxnames-security-section {
    background: linear-gradient(135deg, #f5f7fa, #e4ebf7);
    color: #1b1b1b;
}

.oxnames-security-section .lead {
    color: #3b3b3b;

}

.security-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 10px 30px rgba(27, 177, 220, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(27, 177, 220, 0.15);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.security-card .icon {
    position: relative;
    margin-bottom: 1rem;
    display: inline-block;
}

.security-card .icon img {
    width: 50px;
    position: relative;
    z-index: 2;
}


.security-card .icon .icon-bg {
    position: absolute;
    inset: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(27, 177, 220, 0.15), transparent 70%);
    z-index: 1;
}

/* Titles & Text */
.security-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1b1b1b;
}

.security-card p {
    font-size: 0.95rem;
    color: #333;
}

/* Subtle hover */
.security-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(27, 177, 220, 0.12);
}

@media (max-width: 768px) {
    .security-card {
        padding: 1.5rem 1rem;
    }

    .security-card .icon img {
        width: 45px;
    }

    .security-card .icon .icon-bg {
        width: 65px;
        height: 65px;
    }

    .security-card h3 {
        font-size: 1rem;
    }

    .security-card p {
        font-size: 0.9rem;
    }
}