.modal-header {
    border-bottom: none;
    justify-content: center;
    padding-bottom: 0;
}

.modal-title {
    font-weight: 700;
    font-size: 1.8rem;
    color: #222;
}

.pricing-card {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 1.6rem;
    transition: box-shadow 0.3s ease;
    background: #fff;
    box-shadow: 0 2px 5px rgb(0 0 0 / 0.1);
}

.pricing-card:hover {
    box-shadow: 0 8px 20px rgb(0 0 0 / 0.15);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #007bff;
}
.priceyear {
    font-size: 1.2rem;
    font-weight: 300;
    color: #007bff;
}
.pricesave {
    font-size: 10px;
}

.plan-name {
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.feature-list li {
    margin-bottom: 0.5rem;
}

.btn-primary {
    background-color: #007bff;
    border: none;
    border-radius: 30px;
    padding: 0.6rem 1.6rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
}


.btn-secondary:hover {
    background-color: #0056b3;
}
.btn-secondary {
    background-color: #007bff;
    border: none;
    border-radius: 30px;
    padding: 0.6rem 1.6rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

/* Toggle switch container */
.toggle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #007bff;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: #007bff;
}

input:checked+.slider:before {
    transform: translateX(26px);
}

.border-bold {
    border-width: 2px;
}

.form-switch .form-check-input:checked {
    background-color: #8E54E9;
    border-color: #8E54E9;
}

.ai-btn,
.ai-bg {
    background-image: linear-gradient(to right, #4776E6 0%, #8E54E9 51%, #4776E6 100%) !important;
}

.ai-text {
    background-image: linear-gradient(to right, #4776E6 0%, #8E54E9 51%, #4776E6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* For Safari and Chrome */
    background-clip: text;
    /* Standard property, but less supported */
    color: transparent;
}

.ai-btn {
    text-align: center;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    box-shadow: 0 0 20px #eee;
    display: block;
}

.ai-btn:hover {
    background-position: right center;
    /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
}



.ai-list {
    list-style: none;
    padding-left: 0;
    max-width: 400px;
    margin: 0 auto;
    text-align: left;
}

.ai-list li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 8px;
    font-size: 1.1rem;
    color: #333;
}

/* circle with diagonal gradient background */
.ai-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-image: linear-gradient(135deg, #4776E6 0%, #8E54E9 51%, #4776E6 100%);
    /* center the check */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* white checkmark on top of circle */
.ai-list li::after {
    content: "✔";
    position: absolute;
    left: 6px;
    /* slightly inside the circle */
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: orange;
    font-weight: bold;
    pointer-events: none;
}
