/* ===================
1. Hosting Hero Section
====================== */

/* Hosting Hero */
.hosting-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 8rem 0;
    background: linear-gradient(135deg, #0a0b1f, #14182f, #232144);
    overflow: hidden;
}

/* Animated Gradient Overlay */
.hosting-hero .hosting-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(-45deg, #0a0b1f, #14182f, #1b1c38, #232144);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    z-index: 1;
}

/* Rotating Globe */
.hosting-hero .globe-bg {
    position: absolute;
    right: -15%;
    top: 10%;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.08);
    animation: spin 40s linear infinite;
    z-index: 1;
}

/* Gradient Text & Underline */
.gradient-text {
    background: linear-gradient(90deg, #1bb1dc, #6f63e8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hosting-hero .gradient-underline {
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1bb1dc, #6f63e8);
    margin-top: 8px;
    border-radius: 2px;
}

.hosting-hero .uptime-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fff;
    background: rgba(27, 177, 220, 0.15);
    border: 1px solid rgba(27, 177, 220, 0.4);
    border-radius: 40px;
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 20px rgba(27, 177, 220, 0.4);
    transition: all 0.3s ease;
}

.hosting-hero .uptime-badge i {
    color: #1bb1dc;
    font-size: 1.1rem;
    animation: pulseIcon 2s infinite alternate;
}

.hosting-hero .uptime-badge:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 28px rgba(27, 177, 220, 0.6);
    background: rgba(27, 177, 220, 0.2);
}

@keyframes pulseIcon {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

/* Lead Paragraph */
.hosting-hero p.lead {
    color: #c2c2c2;
}

/* Pricing */
.hosting-hero .price-tag {
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
}

.hosting-hero .price-tag .highlight {
    color: #1bb1dc;
}

/* Buttons */
.hosting-hero .btn-primary {
    background: linear-gradient(135deg, #1bb1dc, #6f63e8);
    border-radius: 50px;
    padding: 14px 32px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
}

.hosting-hero .btn-primary:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 12px 28px rgba(27, 177, 220, 0.6);
}

/* Trust Chips */
.hosting-hero .trust-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    padding: 10px 16px;
    border-radius: 25px;
    font-size: 0.95rem;
    color: #f1f1f1;
    transition: all 0.3s;
}

.hosting-hero .trust-chip:hover {
    background: rgba(27, 177, 220, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(27, 177, 220, 0.35);
}

/* Right-side Visuals: Floating Servers & Clouds */
.hosting-hero .server-rack {
    width: 80px;
    height: 80px;
    margin: 12px auto;
    border-radius: 10px;
    background: linear-gradient(135deg, #1bb1dc, #413e66);
    box-shadow: 0 0 25px rgba(27, 177, 220, 0.5);
    animation: floatRack 6s ease-in-out infinite alternate;
}

.hosting-hero .server-rack-2 {
    background: linear-gradient(135deg, #6f63e8, #00e0ff);
    animation-delay: 1s;
}

.hosting-hero .server-rack-3 {
    background: linear-gradient(135deg, #1bb1dc, #00e0ff);
    animation-delay: 2s;
}

@keyframes floatRack {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hosting-hero .floating-cloud {
    position: absolute;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.15);
    animation: floatCloud 12s ease-in-out infinite alternate;
}

.hosting-hero .cloud-1 {
    top: 20px;
    left: 50px;
}

.hosting-hero .cloud-2 {
    top: 100px;
    right: 80px;
    animation-delay: 3s;
}

@keyframes floatCloud {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* Fiber Lines */
.hosting-hero .fiber-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hosting-hero .glow-line {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    animation: moveFiber 2s linear infinite;
    stroke-width: 3;
    fill: none;
}

@keyframes moveFiber {
    to {
        stroke-dashoffset: 0;
    }
}

/* Network Nodes */
.hosting-hero .network-glow .node {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #1bb1dc;
    box-shadow: 0 0 12px #1bb1dc, 0 0 20px #6f63e8;
    animation: pulseNode 3s ease-in-out infinite alternate;
}

.hosting-hero .node-1 {
    top: 60px;
    left: 60px;
    animation-delay: 0s;
}

.hosting-hero .node-2 {
    top: 120px;
    left: 150px;
    animation-delay: 1s;
}

.hosting-hero .node-3 {
    top: 40px;
    left: 220px;
    animation-delay: 2s;
}

@keyframes pulseNode {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

/* Animations */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}


/* Responsive */
@media (max-width:992px) {
    .hosting-hero-right {
        margin-top: 3rem;
    }
}

@media(max-width:767px) {
    .hosting-hero {
        padding: 5rem 1rem;
    }

    .hosting-hero .server-rack {
        width: 60px;
        height: 60px;
    }

    .hosting-hero .globe-bg {
        width: 300px;
        height: 300px;
        right: -20%;
        bottom: -10%;
        top: auto;
    }

    .hosting-hero .uptime-badge {
        font-size: 0.75rem;
    }

    .hosting-hero .gradient-underline {
        width: 50px;
    }

}

@media (max-width: 575.98px) {
    .hosting-hero {
        padding: 3rem 1rem;
    }

    .hosting-hero .btn-primary {
        padding: 10px 22px;
        font-size: 15px;
    }

    .hosting-hero .price-tag {
        font-size: 1.3rem;
    }

    .hosting-hero .trust-chip {
        gap: 5px;
        padding: 6px 9px;
        font-size: 0.8rem;
    }
}

/* ===================
2. Why Choose Oxnames Hosting
====================== */

.hosting-benefits-section {
    background: linear-gradient(135deg, #f9fcff 0%, #eef6ff 100%);
}

/* Overlay */
.hosting-benefits-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(27, 177, 220, 0.08), transparent 70%),
        radial-gradient(circle at bottom right, rgba(111, 99, 232, 0.08), transparent 70%);
    z-index: 1;
    pointer-events: none;
}

/* Animated blobs */
.hosting-benefits-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    z-index: 1;
    animation: hosting-float 20s ease-in-out infinite alternate;
}

.hosting-blob-primary {
    width: 450px;
    height: 450px;
    top: -120px;
    left: -100px;
    background: #1bb1dc;
}

.hosting-blob-secondary {
    width: 350px;
    height: 350px;
    bottom: -120px;
    right: -80px;
    background: #6f63e8;
    animation-delay: 4s;
}

.hosting-blob-accent {
    width: 280px;
    height: 280px;
    top: 40%;
    left: 55%;
    background: #00e0ff;
    animation-delay: 6s;
}

@keyframes hosting-float {
    0% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.05);
    }

    100% {
        transform: translateY(0) scale(1);
    }
}

/* ---------- Cards ---------- */
.hosting-benefit-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    padding: 2.2rem 1.8rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 12px 30px rgba(27, 177, 220, 0.1);
    height: 100%;
}

.hosting-benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(27, 177, 220, 0.2);
}

/* Icons */
.hosting-icon-wrap {
    width: 55px;
    height: 55px;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1bb1dc, #6f63e8);
    color: #fff;
    font-size: 1.7rem;
    box-shadow: 0 8px 20px rgba(27, 177, 220, 0.3);
    transition: all 0.4s ease;
}

.hosting-benefit-card:hover .hosting-icon-wrap {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 28px rgba(27, 177, 220, 0.4);
}

/* Text */
.hosting-benefits-subtitle {
    max-width: 680px;
}

.hosting-benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: #1a1a1a;
}

.hosting-benefit-text {
    color: #575656;
    max-width: 18rem;
    margin: auto;
}

/* Button */
.gradient-btn {
    background: linear-gradient(135deg, #1bb1dc, #6f63e8);
    border: none;
    color: #fff;
    transition: all 0.3s ease;
}

.gradient-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(27, 177, 220, 0.35);
}

.hosting-f-btn {
    background: linear-gradient(135deg, #1bb1dc, #6f63e8);
    border-radius: 50px;
    color: #fff;
    padding: 14px 36px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;

}

.hosting-f-btn:hover {
    color: white;
}

@media (max-width: 575.98px) {
    .hosting-benefit-card {
        padding: 2rem 1.5rem;
    }
}

/* ===================
3. Hosting Plan Section
====================== */

/* Background */
.hosting-plans.hosting-plans {
    background: linear-gradient(135deg, #f9fbff, #f0f6ff);
    position: relative;
}

/* Animated Background Blobs */
.hosting-plans .plans-bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.25;
    z-index: 0;
}

.hosting-plans .blob1 {
    width: 400px;
    height: 400px;
    background: #1bb1dc;
    top: -50px;
    left: -50px;
    animation: floatBlob 20s ease-in-out infinite alternate;
}

.hosting-plans .blob2 {
    width: 300px;
    height: 300px;
    background: #6f63e8;
    bottom: -60px;
    right: -60px;
    animation: floatBlob 25s ease-in-out infinite alternate;
}

.hosting-plans .blob3 {
    width: 250px;
    height: 250px;
    background: #00e0ff;
    top: 30%;
    right: 25%;
    animation: floatBlob 22s ease-in-out infinite alternate;
}

@keyframes floatBlob {
    0% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.05);
    }

    100% {
        transform: translateY(0) scale(1);
    }
}

/* Toggle Pill */
.hosting-plans .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;
}

.hosting-plans .toggle-pill input,
.hf-toggle-pill input {
    display: none;
}

.hosting-plans .toggle-pill label,
.hf-toggle-pill label {
    font-weight: bold;
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
}

.hosting-plans .toggle-pill label:hover,
.hf-toggle-pill label:hover {
    background: #d0e4f9;
}

.hosting-plans .toggle-pill input:checked+label,
.hf-toggle-pill input:checked+label {
    background: linear-gradient(135deg, #1bb1dc, #6f63e8);
    color: #fff;
}

.hosting-plans .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 */
.hosting-plans .plan-card {
    background: linear-gradient(145deg, #ffffff, #f6f9fc);
    border-radius: 2rem;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 50px rgb(213 206 255 / 38%), 0 30px 70px rgb(213 193 255 / 53%);
    transition: transform 0.4s, box-shadow 0.4s;
    backdrop-filter: blur(5px);
    height: 100%;
}

.hosting-plans .plan-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.hosting-plans .featured-plan {
    border: 2px solid #1bb1dc;
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 25px 60px rgba(27, 177, 220, 0.25);
}

/* Ribbon & Popular Tag */
.hosting-plans .popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%) rotate(-10deg);
    background: #1bb1dc;
    color: #fff;
    padding: 0.5rem 1.6rem;
    font-size: 0.95rem;
    font-weight: bold;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Plan Header */
.hosting-plans .plan-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 2.5rem 2rem 0 2rem;
}

/* Icon hover */
.hosting-plans .plan-icon svg {
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease, fill 0.3s ease;
}

.hosting-plans .plan-icon svg:hover {
    transform: scale(1.2);
    fill: #413e66;
}

/* Title and subtitle */
.hosting-plans .plan-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #413e66;
}

.hosting-plans .plan-subtitle {
    font-size: .9rem;
    color: #5d74e5;
    line-height: 1;
    font-weight: 600;
}

/* Price Wrapper */
.hosting-plans .plan-price-wrapper {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 0 2rem;
}

.plan-price-top .old-price {
    text-decoration: line-through;
    color: #888;
    font-size: 1rem;
    transition: opacity 0.3s;
    display: block;
    margin-bottom: 4px;
}

.plan-price-top .currency-amount {
    font-size: 2rem;
    font-weight: 800;
    color: #1bb1dc;
    transition: opacity 0.3s;
}

.hosting-plans .plan-renewal {
    font-size: 0.9rem;
    color: #555;
    margin-top: 8px;
    padding: 0 1.5rem;
}

.hosting-plans .plan-savings {
    font-size: 0.95rem;
    color: #ff5722;
    font-weight: 800;
}

.plan-price-top .current-price .currency-symbol {
    font-size: 1.5rem;
    vertical-align: top;
    font-weight: 800;
    color: #1bb1dc;
    transition: opacity 0.3s;
}

.plan-price-top .current-price .per {
    font-size: 0.8rem;
    align-self: flex-end;
    margin-left: 1px;
    color: #757f95;
}

/* Divider */
.hosting-plans .feature-divider {
    border: none;
    height: 1px;
    background: rgb(181, 189, 194);
    opacity: 0.5;
    margin: 2rem 0 1.5rem 0;
    border-radius: 2px;
}

/* Feature List */
.hosting-plans .plan-features {
    list-style: none;
    padding: 0 2rem 2.4rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    font-size: 1rem;
    color: #14182f;
    font-weight: 500;
}

.hosting-plans .plan-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: .9rem;
    font-weight: 500;
    color: #14182f;
}

.hosting-plans .plan-features li .check {
    color: #1bb1dc;
    font-weight: bold;
}

/* info tooltip */
.info-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    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;
}

/* Buttons */
.hosting-plans .btn-gradient {
    background: linear-gradient(135deg, #6f42c1, #6f63e8);
    border: none;
    color: #fff;
    width: 70%;
    padding: 0.8rem 2rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.hosting-plans .btn-gradient:hover {
    box-shadow: 0 10px 25px rgba(27, 177, 220, 0.5);
    transform: translateY(-2px);
}

.hosting-plans .btn-glow {
    box-shadow: 0 4px 25px rgba(27, 177, 220, 0.5);
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    0% {
        box-shadow: 0 4px 20px rgba(27, 177, 220, 0.5);
    }

    100% {
        box-shadow: 0 10px 30px rgba(27, 177, 220, 0.7);
    }
}

/* Premium Featured Plan */
.hosting-plans .featured-plan {
    background: linear-gradient(145deg, #14182f, #1b1c38);
    color: #e0e0ff;
    border: 2px solid #1bb1dc;
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 25px 60px rgba(27, 177, 220, 0.3);
}

.hosting-plans .featured-plan .plan-title {
    color: #ffffff;
}

.hosting-plans .featured-plan .plan-subtitle {
    color: #6f63e8;
}

.hosting-plans .featured-plan .plan-features li {
    color: #c2c2c2;
}

.hosting-plans .featured-plan .plan-features li .check {
    color: #1bb1dc;
}

.hosting-plans .featured-plan .info-icon .tooltip {
    background: #afc2d8;
    color: #2b2b31;
}

.hosting-plans .featured-plan .info-icon svg {
    stroke: #d9e1e4;
}

.hosting-plans .featured-plan .plan-renewal {
    color: #c2c2c2;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Trust Badges */
.hosting-plans .trust-badges .premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f0f6ff;
    color: #1bb1dc;
    font-weight: 600;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    border: 1px solid #1bb1dc;
    box-shadow: 0 4px 15px rgba(27, 177, 220, 0.15);
    font-size: 0.95rem;
    margin: 0.3rem;
    transition: all 0.3s ease;
}

.hosting-plans .trust-badges .premium-badge i {
    color: #1bb1dc;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.hosting-plans .trust-badges .premium-badge:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(27, 177, 220, 0.25);
    background: #e0f4ff;
}

/* ===================
4. Cpanel Section
====================== */
.cpanel-section {
    background: #fdfdfd;
    color: #1a1a1a;
}

.cpanel-section .feature-card {
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    background: transparent;
    margin-bottom: 1.5rem;
    background: #fff;
    border-radius: 20px;
    padding: 1.2rem 1.5rem;
    box-shadow: 0 18px 36px rgba(27, 177, 220, 0.08);
    transition: all 0.3s ease;
}

.cpanel-section .feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(27, 177, 220, 0.15);
}

.cpanel-section .icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cpanel-section .icon-wrap img {
    width: 50px;
    height: auto;
}

.cpanel-section .feature-card:hover .icon-wrap {
    transform: scale(1.15);
}

.cpanel-section .feature-title {
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.3rem;
}

.cpanel-section .feature-text {
    color: #555;
    font-size: 0.95rem;
}

.cpanel-section .gradient-btn {
    background: linear-gradient(135deg, #1bb1dc, #6f63e8);
    border-radius: 50px;
    color: #fff;
    padding: 14px 36px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.gradient-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 32px rgba(27, 177, 220, 0.35);
}

.cpanel-section .browser-frame {
    background: linear-gradient(135deg, #000000, #000000);
    padding: 0.5rem 1rem;
}

.cpanel-section .browser-frame .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

/* Blobs */
.cpanel-section .cpanel-bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    z-index: 0;
    animation: floatBlob 25s ease-in-out infinite alternate, rotateBlob 80s linear infinite;
}

.cpanel-section .blob1 {
    width: 420px;
    height: 420px;
    top: -60px;
    left: -80px;
    background: #1bb1dc;
}

.cpanel-section .blob2 {
    width: 360px;
    height: 360px;
    bottom: -100px;
    right: -100px;
    background: #6f63e8;
    animation-delay: 5s;
}

.cpanel-section .blob3 {
    width: 300px;
    height: 300px;
    top: 40%;
    left: 60%;
    background: #00e0ff;
    animation-delay: 10s;
}

@keyframes floatBlob {
    0% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-35px) scale(1.05);
    }

    100% {
        transform: translateY(0) scale(1);
    }
}

@keyframes rotateBlob {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.cpanel-preview {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cpanel-preview:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}


.cpanel-preview .dot {
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
}

.cpanel-preview .shadow-inner {
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.05);
}

.cpanel-preview .hover-scale {
    transition: transform 0.5s ease;
}

.cpanel-preview .hover-scale:hover {
    transform: scale(1.03);
}

.cpanel-preview .badge-feature {
    font-size: 0.8rem;
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@media(max-width:767px) {
    .cpanel-section {
        padding: 60px 1rem;
    }

    .feature-card {
        padding: 1.2rem 1rem;
    }

    .icon-wrap img {
        width: 30px;
    }
}

/* ===================
5. Builder Section
====================== */
.builder-section {
    position: relative;
    overflow: hidden;
    background: #f9f9fb;
}

.builder-section .container {
    position: relative;
    z-index: 2;
}

/* Heading */
.builder-section .gradient-text {
    background: linear-gradient(90deg, #1bb1dc, #413e66);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Device frame */
.builder-section .device-frame {
    max-width: 640px;
    height: 340px;
    margin: 0 auto;
    border-radius: 1.25rem;
    overflow: hidden;
    position: relative;
    background: linear-gradient(145deg, #ffffff, #f0f6ff);
    box-shadow: 0 25px 40px rgba(65, 62, 102, 0.06);
}

.builder-section .device-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* soft glow behind the frame */
.builder-section .device-glow {
    position: absolute;
    inset: -20px;
    z-index: 0;
    filter: blur(40px);
    opacity: .36;
    background: radial-gradient(circle at 20% 30%, rgba(27, 177, 220, 0.25), transparent 20%),
        radial-gradient(circle at 80% 70%, rgba(111, 99, 232, 0.18), transparent 25%);
    border-radius: inherit;
    pointer-events: none;
}

/* Gradient chips */
.builder-section .chip {
    position: absolute;
    padding: .45rem .9rem;
    border-radius: 999px;
    font-weight: 700;
    color: #fff;
    font-size: .82rem;
    box-shadow: 0 10px 24px rgba(65, 62, 102, 0.12);
    z-index: 5;
    animation: floaty 6s ease-in-out infinite;
}

.builder-section .chip--left {
    top: 10%;
    left: 3%;
    transform: rotate(-6deg);
}

.builder-section .chip--right {
    bottom: 10%;
    right: 1%;
    transform: rotate(6deg);
}

.builder-section .chip--mid {
    top: 40%;
    right: 12%;
}

.builder-section .chip--primary {
    background: linear-gradient(135deg, #1bb1dc, #413e66);
}

.builder-section .chip--secondary {
    background: linear-gradient(135deg, #6f63e8, #00e0ff);
}

.builder-section .chip--accent {
    background: linear-gradient(135deg, #ff6ec4, #6f63e8);
}

@keyframes floaty {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }

    100% {
        transform: translateY(0)
    }
}

/* Feature cards */
.builder-section .feature-card {
    transition: all 0.5s ease;
    background: linear-gradient(145deg, #fff, #f6f9ff);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgb(27 177 220 / 24%), inset 0 0 10px rgba(255, 255, 255, 0.2);
}

.builder-section .feature-card p {
    font-size: 1rem;
}

.builder-section .feature-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 35px 60px rgba(27, 177, 220, 0.3),
        inset 0 0 15px rgba(255, 255, 255, 0.3);
}

/* Feature Icon Gradients */
.builder-section .gradient-icon-1 {
    background: linear-gradient(90deg, #1bb1dc, #413e66);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.builder-section .gradient-icon-2 {
    background: linear-gradient(135deg, #1bb1dc, #413e66);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.builder-section .gradient-icon-3 {
    background: linear-gradient(135deg, #6f63e8, #00e0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.builder-section .gradient-icon-4 {
    background: linear-gradient(135deg, #1bb1dc, #6f63e8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Testimonial */
.builder-section .testimonial {
    max-width: 520px;
    margin: 1.2rem auto 0;
    padding: 1.1rem;
    border-radius: .9rem;
    background: linear-gradient(145deg, #fff, #f6f9ff);
    border: 1px solid rgba(255, 255, 255, 0.6);
    position: relative;
    box-shadow: 0 15px 40px rgba(65, 62, 102, 0.05);
}

.builder-section .gradient-border {
    position: relative;
}

.builder-section .gradient-border::before {
    content: '';
    position: absolute;
    inset: -3px;
    z-index: -1;
    border-radius: .9rem;
    background: linear-gradient(90deg, #1bb1dc, #6f63e8, #ff6ec4);
    filter: blur(12px);
    opacity: .55;
}

/* Background blobs */
.builder-section .builder-bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(64px);
    opacity: .15;
    z-index: 0;
    pointer-events: none;
}

.builder-section .blob1 {
    width: 420px;
    height: 420px;
    top: -80px;
    left: -100px;
    background: linear-gradient(135deg, #1bb1dc, #413e66);
    animation: floatBlob 20s infinite linear;
}

.builder-section .blob2 {
    width: 360px;
    height: 360px;
    bottom: -100px;
    right: -80px;
    background: linear-gradient(135deg, #1bb1dc, #6f63e8);
    animation: floatBlob 22s infinite linear;
}

.builder-section .blob3 {
    width: 280px;
    height: 280px;
    top: 40%;
    left: 62%;
    background: linear-gradient(135deg, #ff6ec4, #6f63e8);
    animation: floatBlob 24s infinite linear;
}

@keyframes floatBlob {
    0% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-30px) rotate(20deg);
    }

    100% {
        transform: translateY(0) rotate(360deg);
    }
}

/* Responsive tweaks */
@media (max-width:992px) {
    .builder-section .device-frame {
        height: 260px;
    }

    .builder-section .feature-card {
        padding: 1rem;
    }

    .builder-section .chip {
        font-size: .75rem;
    }
}

@media (max-width:564px) {
    .builder-section .feature-card {
        padding: 1.2rem .8rem;
    }

    .builder-section .feature-card p {
        font-size: .9rem;
        line-height: 1.5;
    }

    .feature-card h3 {
        font-size: 16px;
    }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {

    .builder-section .chip,
    .builder-section .blob1,
    .builder-section .blob2,
    .builder-section .blob3 {
        animation: none !important;
        transition: none !important;
    }
}

/* ===================
6. Free Migration Section
=================== */
.free-migration-section {
    background: linear-gradient(135deg, #0a0b1f, #14182f, #1f2244);
    color: #f1f1f1;
    padding: 100px 0;
}

.free-migration-section .lead {
    color: #b8b8b8;
    max-width: 640px;
    margin: 0 auto;
}

.free-migration-section .text-gradient {
    background: linear-gradient(90deg, #36d2ff, #606fe4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Website Cards - Glassmorphism Dark */
.free-migration-section .website-card {
    position: absolute;
    width: 130px;
    height: 100px;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(27, 178, 220, 0.788), rgba(65, 62, 102, 0.7));
    backdrop-filter: blur(12px);
    border: 1px solid rgba(27, 178, 220, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    box-shadow: 0 15px 35px rgba(27, 177, 220, 0.3);
    transition: all 0.4s ease;
}

.free-migration-section .website-card:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 25px 50px rgba(27, 177, 220, 0.5);
}

.free-migration-section .website-card i {
    font-size: 1.4rem;
}

.free-migration-section .client-site {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.free-migration-section .oxnames-site {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* Floating effect */
.free-migration-section .floating {
    animation: floaty 5s ease-in-out infinite;
}

@keyframes floaty {

    0%,
    100% {
        transform: translateY(-50%) translateX(0);
    }

    50% {
        transform: translateY(-60%) translateX(5px);
    }
}

/* Migration Path */
.free-migration-section .migration-path {
    position: absolute;
    width: 100%;
    height: 120px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: -1;
}

.free-migration-section .migration-path circle {
    filter: drop-shadow(0 0 10px rgba(27, 177, 220, 0.9));
}

/* Benefits */
.free-migration-section .migration-benefits {
    margin-bottom: 2rem;
}

.free-migration-section .migration-benefits+hr {
    margin-top: 1rem;
    margin-bottom: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.free-migration-section .trust-reassurance {
    margin-bottom: 2rem;
    line-height: 1.6;
}

.free-migration-section .migration-btn-wrap {
    margin-bottom: 0;
}

.free-migration-section .migration-benefits li {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
}

.free-migration-section .migration-benefits i {
    color: #1bb1dc;
    font-size: 1.3rem;
    margin-right: 0.6rem;
}

/* Gradient Button */
.free-migration-section .gradient-btn {
    background: linear-gradient(135deg, #6f42c1, #6f63e8);
}

/* Background Blobs */
.free-migration-section .migration-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.12;
    animation: floatBlob 20s infinite alternate;
}

.free-migration-section .migration-blob-primary {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    background: linear-gradient(135deg, #1bb1dc, #413e66);
}

.free-migration-section .migration-blob-secondary {
    width: 320px;
    height: 320px;
    bottom: -100px;
    right: -80px;
    background: linear-gradient(135deg, #6f63e8, #00e0ff);
}

@keyframes floatBlob {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-25px) rotate(15deg);
    }

    100% {
        transform: translateY(0) rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .free-migration-section .website-card {
        width: 100px;
        height: 80px;
        font-size: 0.8rem;
    }

    .free-migration-section .migration-benefits {
        margin-bottom: 1.5rem;
    }

    .free-migration-section .trust-reassurance {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .free-migration-section .migration-btn-wrap a {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    .free-migration-section {
        padding: 55px 0;
    }

    .free-migration-section .migration-illustration {
        max-width: 400px;
        margin-top: 2rem;
        margin-bottom: 4rem;
    }

    .free-migration-section .migration-benefits li {
        font-size: 1rem;
    }

    .free-migration-section .website-card i {
        font-size: 1rem;
    }
}

/* ===================
7. Hosting Features section
====================== */

.hosting-features-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f9fbff, #f0f6ff);
}

.hosting-features-section::before,
.hosting-features-section::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.4;
    animation: float 18s infinite ease-in-out;
}

.hosting-features-section::before {
    top: -100px;
    left: -150px;
    background: #1bb1dc;
}

.hosting-features-section::after {
    bottom: -120px;
    right: -100px;
    background: #6f63e8;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-40px) translateX(30px);
    }
}

/* Table container */
.hosting-features-section .table-container {
    background: #ffffffcc;
    border-radius: 16px;
    box-shadow: 0 12px 25px rgba(27, 177, 220, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

/* Table */
.hosting-features-section .hosting-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 3px;
}

/* Table headers */
.hosting-features-section .hosting-table thead th {
    font-weight: 700;
    text-align: center;
    padding: 20px 16px;
    border-bottom: 2px solid #d0e4f2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hosting-features-section .hosting-table thead th:first-child {
    background: none;
    border: none;
}

/* Plan columns */
.hosting-features-section .hosting-table thead th.plan-col {
    background: linear-gradient(90deg, #e3f5fb 0%, #d0eafc 100%);
    border: 1px solid #ffffff;
    font-weight: 700;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 2;
    padding: 2rem;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 2px 6px rgba(27, 177, 220, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hosting-features-section .hosting-table thead th.plan-col:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(27, 177, 220, 0.25);
}

/* Plan header */
.hosting-features-section .plan-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hosting-features-section .plan-badge {
    background: #1bb1dc;
    color: #fff;
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 12px;
    margin-bottom: 6px;
}

.hosting-features-section .plan-header .plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.hosting-features-section .plan-header .price {
    font-size: 20px;
    font-weight: 800;
}

.hosting-features-section .hosting-table .plan-price-top .current-price .currency-symbol,
.hosting-features-section .hosting-table .plan-price-top .currency-amount {
    font-size: 1.2rem;
}

.hosting-features-section .hosting-table .plan-price-top .old-price {
    font-size: .85rem;
}

.hosting-features-section .hosting-table .plan-price-wrapper .plan-savings {
    color: #e64717;
    font-size: .8rem;
    font-weight: 800;
    margin-top: .4rem;
}

/* CTA buttons */
.hosting-features-section .btn-cta {
    background: linear-gradient(135deg, #6f42c1, #6f63e8);
    color: #fff;
    border-radius: .5rem;
    padding: 6px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.hosting-features-section .btn-cta:hover,
.hosting-features-section .btn-cta:focus {
    box-shadow: 0 10px 25px rgba(27, 177, 220, 0.5);
    transform: translateY(-2px) scale(1.02);
}

/* Collapsible Section Buttons */
.hosting-features-section .table-section {
    background: #e0f7ff;
    border-top: 1px solid #d0e4f2;
}

.hosting-features-section .table-section th {
    padding: 0;
    border: none;
}

.hosting-features-section .btn-section {
    width: 100%;
    text-align: left;
    font-weight: 700;
    background: linear-gradient(-45deg, #1bb1dc 0%, #413e66 40%, #08637d 70%, #2e2c4e 100%);
    border: none;
    color: #ffffff;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 3px;
}

.hosting-features-section .btn-section i {
    transition: transform 0.3s ease;
}

.hosting-features-section .collapse.show+.btn-section i,
.hosting-features-section .btn-section[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.hosting-features-section .collapse-section td {
    text-align: center;
    padding: 16px;
    border: 1px solid #d0e4f2;
    background: #ffffffcc;
    box-shadow: inset 0 -1px 0 rgba(27, 177, 220, 0.05);
}

.hosting-features-section .collapse-section:hover td {
    background: linear-gradient(90deg, #d0eafc 0%, #b7e1fb 100%);
    transform: translateY(-1px);
}

.hosting-features-section .collapse-section td.feature-name {
    text-align: left;
    font-weight: 600;
    color: #111;
    background: linear-gradient(90deg, #e3f5fb 0%, #d0eafc 100%);
    display: flex;
    align-items: center;
    width: 100%;
    gap: .5rem;
}

/* Equal width columns */
.hosting-features-section .hosting-table th,
.hosting-features-section .hosting-table td {
    width: 25%;
    border-radius: 4px;
}

/* Media Queries */
@media (max-width: 1200px) {
    .hosting-features-section .plan-header .plan-name {
        font-size: 1.1rem;
    }

    .hosting-features-section .plan-price-top .current-price {
        font-size: 1rem;
    }

    .hosting-features-section .btn-section {
        font-size: 15px;
        padding: 10px;
    }
}

@media (max-width: 992px) {
    .hosting-features-section {
        padding: 3rem 1rem;
    }

    .hosting-features-section .plan-header .plan-name {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hosting-features-section .hosting-table thead th.plan-col {
        padding: 1.2rem 1rem;
    }

    .hosting-features-section .btn-cta {
        padding: 5px 14px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hosting-features-section .plan-header {
        gap: 4px;
    }

    .hosting-features-section .collapse-section td {
        padding: 12px;
        font-size: 0.85rem;
    }
}