

.pricing-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.05) 0%, rgba(13, 110, 253, 0) 70%);
    border-radius: 50%;
}

.blob-1 {
    top: -300px;
    right: -300px;
}

.blob-2 {
    bottom: -300px;
    left: -300px;
}

.hosting-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    border: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
/* 
.hosting-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(13, 110, 253, 0.1), rgba(102, 16, 242, 0.1));
    opacity: 0;
    transition: all 0.5s ease;
} */



.hosting-card:hover::after {
    opacity: 1;
}

.hosting-card.featured {
    transform: scale(1.05);
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border: 2px solid rgba(13, 110, 253, 0.3);
}

.custom-ribbon-div {
    position: absolute;
    top: 15px;
    right: -45px;
    transform: rotate(45deg);
    background: linear-gradient(90deg, #050B41, #7FB800);
    color: white;
    padding: 5px 50px;
    font-size: 14px;
    font-weight: 600;
    z-index: 1;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.plan-header {
    position: relative;
    padding-top: 50px;
    padding-bottom: 20px;

    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}



.hosting-card:hover .plan-icon {
    background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
    /* transform: rotate(360deg); */
}



.hosting-card:hover .plan-icon i {
    -webkit-text-fill-color: white;
}

.plan-price {
    font-size: 3.3rem;
    font-weight: 700;
    color: #212529;
    margin: 5px 0 -8px;
    font-family: 'Arial', sans-serif;
}

.plan-period {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 500;
}

.feature-list {
    margin: 10px 0;
    padding: 0 30px;
    list-style: none;
}

.feature-item {
    padding: 12px 0;
    display: flex;
    align-items: center;
    color: #495057;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item i {
    margin-right: 12px;
    color: #050B41;
    font-size: 1.1rem;
}

.feature-value {
    font-weight: 600;
    margin-right: 5px;
    color: #212529;
}

/* Button Base Style */
.hosting-btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.4s ease;
    width: calc(100% - 60px);
    /* Keeping your original width */
    margin: 0 30px 30px;
    cursor: pointer;
    /* Ensures it's clickable */
    display: inline-block;
    /* Makes sure it behaves like a button */
    position: relative;
    /* Prevents being overlapped */
    z-index: 10;
    /* Ensures it stays clickable */
}

/* Outline Button */
.btn-outline-hosting {
    border: 2px solid #0d6efd;
    color: #0d6efd;
    background: transparent;
}

.btn-outline-hosting:hover {
    background: linear-gradient(90deg, #0F1740, #0F1740);
    color: white;
    border-color: transparent;
}

/* Primary Button */
.btn-hosting-primary {
    background: linear-gradient(90deg, #7FB800, #050B41);
    color: white;
    border: none;
}

.btn-hosting-primary:hover {
    background: linear-gradient(90deg, #7FB800, #0d6efd);
    transform: translateY(-2px);
}

/* Ensure Parent Elements Do Not Block Clicks */
button,
.hosting-btn {
    pointer-events: auto;
    /* Ensures clicking is allowed */
}


.storage-badge {
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    padding: 5px 30px;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 10px;
    display: inline-block;
}

 /* Toggle Switch */
 .toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
    background-color: #f3f4f6;
    padding: 8px;
    border-radius: 40px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.toggle-option {
    font-size: 0.95rem;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px 24px;
    border-radius: 30px;
}

.toggle-option.active {
    color: #111827;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 56px;
    height: 30px;
    margin: 0 12px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

input:checked+.slider {
    background-color: #7FB800;
}

input:checked+.slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

