.hero .hero-description {
    margin: 0 0 30px;
}

.hero .hero-actions {
    justify-content: flex-start;
    margin-bottom: 0;
}

ul.feature-benefits {
    list-style: none;
    padding-left: 0;
    text-align: left;
}

ul.feature-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about .features-list .feature-item i {
    font-size: 1.4rem;
    margin-bottom: 0;
}

.features-tabs .visual-content .main-image {
    position: relative;
    border-radius: 1px;
    box-shadow: none;
}

#mobile-app.call-to-action .content-right .floating-card,
#light-dark-mode.call-to-action .content-right .floating-card,
#budget-control.call-to-action .content-right .floating-card {
    right: auto;
    left: -1rem;
}

.newsletter h4 {
    font-size: 24px;
}

.newsletter .newsletter-form {
    margin-top: 30px;
}

.newsletter {
    border: 1px solid #e59d024f;
}

.newsletter .newsletter-form input[type=email] {
    border: 0;
    padding: 4px 16px;
    width: 100%;
    background-color: var(--surface-color);
    color: var(--default-color);
    height: 42px;
    border: var(--accent-color);
    border-radius: 25px 0 0 25px;
}

.newsletter .newsletter-form input[type=submit] {
    border: 0;
    font-size: 16px;
    padding: 0 20px;
    margin: 0 -8px -7px 0;
    background: var(--accent-color);
    color: var(--contrast-color);
    transition: 0.3s;
    border-radius: 0 25px 25px 0;
    height: 42px;
}

.stats .statCont {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #020202b5;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.subsManagement .features-list .feature-item i.bi-lightbulb,
.subsManagement .features-list .feature-item i.bi-award {
    font-size: 4.4rem;
}

.about.subsManagement .features-list .feature-item p {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* ── Solution Cards (Personal & Business) — Services-page animation system ── */
.solution-card {
    background: var(--surface-color);
    border-radius: 20px;
    padding: 35px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

/* Sliding top accent bar — identical to .features .feature-item::before */
.solution-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 50%));
    transition: left 0.5s ease;
    pointer-events: none;
}

/* Watermark number — decorative, positioned top-right like .feature-number */
.solution-card .card-watermark {
    position: absolute;
    top: 18px;
    right: 24px;
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    color: color-mix(in srgb, var(--accent-color), transparent 90%);
    transition: color 0.4s ease, transform 0.4s ease;
    user-select: none;
    pointer-events: none;
    z-index: 1;
}

/* Lift + glow on hover */
.solution-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}

/* Slide accent bar in */
.solution-card:hover::before {
    left: 0;
}

/* Watermark pulses on hover */
.solution-card:hover .card-watermark {
    color: color-mix(in srgb, var(--accent-color), transparent 80%);
    transform: scale(1.1);
}

/* Business card: stronger left border accent */
.solution-card.business {
    border-left: 4px solid color-mix(in srgb, var(--accent-color), transparent 50%);
}

/* ── Icon badge — matches .features .feature-item .feature-icon i ── */
.solution-card .card-icon {
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.solution-card .card-icon i {
    font-size: 32px;
    color: var(--contrast-color);
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 30%));
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
    /* Entrance animation — matches .features-tabs floating-card */
    opacity: 0;
    transform: translateY(20px);
    animation: solutionIconIn 0.7s ease 0.3s forwards;
}

@keyframes solutionIconIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Icon spin + scale on hover for a dynamic effect */
.solution-card:hover .card-icon i {
    transform: scale(1.15) rotateY(360deg);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 60%);
}

/* ── Headings ── */
.solution-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 6px;
    position: relative;
    z-index: 2;
}

.solution-card h4 {
    font-size: 0.92rem;
    font-weight: 400;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 22px;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

/* ── Feature checklist ── */
.solution-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.solution-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
    /* border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%); */
    transition: color 0.3s ease;
}

.solution-list li:last-child {
    border-bottom: none;
}

.solution-list li i {
    color: var(--accent-color);
    font-size: 0.95rem;
    margin-top: 2px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.solution-card:hover .solution-list li i {
    transform: scale(1.15);
}

/* ── CTA button — gradient + lift, matches .features-tabs .btn-primary ── */
.solution-card .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
    color: #000000e3;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 26px;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
    position: relative;
    z-index: 2;
}

.solution-card .btn-primary i {
    transition: transform 0.3s ease;
}

.solution-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px color-mix(in srgb, var(--accent-color), transparent 60%);
    color: #000000e3;
}

.solution-card .btn-primary:hover i {
    transform: translateX(5px);
}
.services .features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: var(--surface-color);
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}
.services .features .feature-item i {
    color: var(--accent-color);
    font-size: 1.25rem;
}
#terms ul li,
#privacy ul li{
    list-style: circle;
}

#privacy h1,
#terms h1{
    font-size: 30px;
    font-weight: 600;
}
#privacy h2,
#terms h2{
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 2px;
    margin-top: 20px;
}

/* Privacy policy dark theme */
#privacy, #terms {
    color: #e7eefc;
}

#privacy .content-box.privacy-card,
#terms .content-box.privacy-card {
    background: #07090f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

#privacy .privacy-header,
#terms .privacy-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 1.25rem;
}

#privacy .privacy-subtitle,
#terms .privacy-subtitle {
    color: rgba(255, 255, 255, 0.70);
    margin-top: 0.35rem;
}

#privacy .privacy-badge,
#terms .privacy-badge {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-weight: 500;
}

#privacy .privacy-summary-card,
#privacy .privacy-section,
#terms .privacy-summary-card,
#terms .privacy-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

#privacy .privacy-summary .row,
#privacy .privacy-grid .row,
#terms .privacy-summary .row,
#terms .privacy-grid .row {
    align-items: stretch;
}

#privacy .privacy-summary-card,
#terms .privacy-summary-card {
    padding: 1.4rem;
}

#privacy .privacy-summary-card h3,
#terms .privacy-summary-card h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: #fff;
}

#privacy .privacy-summary-card p,
#terms .privacy-summary-card p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
    flex: 1;
}

#privacy .privacy-section,
#terms .privacy-section {
    padding: 1.6rem;
}

#privacy .privacy-section h2,
#terms .privacy-section h2 {
    font-size: 1.45rem;
    margin-bottom: 1rem;
    color: #fff;
}

#privacy .privacy-section p,
#terms .privacy-section p {
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.8;
}

#privacy .privacy-section ul,
#terms .privacy-section ul {
    padding-left: 1.2rem;
    margin: 1rem 0 0;
}

#privacy .privacy-section ul li,
#terms .privacy-section ul li {
    list-style: none;
    position: relative;
    padding-left: 1.3rem;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.76);
}

#privacy .privacy-section ul li:before,
#terms .privacy-section ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
}

#privacy a,
#terms a {
    color: var(--accent-color);
}

#privacy a:hover,
#terms a:hover {
    color: #fff;
}
.call-to-action .content-right .floating-card{
    top: auto;
    bottom: 12px;
    left: 7px;
    right: auto !important;
}
.call-to-action{
    border-radius: 0;
}
@media (max-width: 767px) {
    #privacy .privacy-summary-card,
    #privacy .privacy-section,
    #terms .privacy-summary-card,
    #terms .privacy-section {
        min-height: auto;
    }
}

.blog-details .post-img img{
    max-height: 400px;
}
.page-title h1 {
    font-size: 32px;
    margin-bottom: 5px;
}

.page-title {
    padding: 150px 0 60px 0;
}
.blog article{
    background: var(--surface-color); 
    border-radius: 12px; 
    overflow: hidden; 
    height: 100%; 
    transition: 0.3s; 
    border: 1px solid #333;
}
.blog article img{
    width: 100%; 
    height: 200px; 
    object-fit: cover;
}
.blog article h2.title {
    font-size: 20px;
    margin-bottom: 12px;
    min-height: 50px;
}
.blog article p.post-description {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 16px;
}

.blog .post-category {
    color: var(--accent-color);
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
}
.blog-details h1.title {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
}






/* ── Responsive ── */
@media (max-width: 767px) {
    .solution-card {
        padding: 25px;
    }

    .solution-card h3 {
        font-size: 1.1rem;
    }

    .solution-card .card-icon i {
        font-size: 25px;
        width: 55px;
        height: 55px;
        border-radius: 12px;
    }

    .solution-card .card-watermark {
        font-size: 52px;
    }
}

#light-dark.call-to-action,
#renewal-alerts.call-to-action,
#security-section.call-to-action,
#budget-control.call-to-action,
#security-section.call-to-action {
    border-radius: 0rem;
}

.call-to-action .cta-buttons .btn.btn-primary,
.features-tabs .content-wrapper .btn-primary,
.call-to-action .cta-buttons .btn.btn-primary,
.about .btn.btn-primary,
.header .btn-getstarted,
.hero .hero-actions .action-btn.primary {
    color: #000000e3;
}

.pricing .plan-features ul li {
    padding: 7px 0;
}

#contactSubject.form-select {
    background-color: #100f0f;
    border: 2px solid #343333;
    color: #72726a;
    line-height: 34px;
    border-radius: 13px;
}

.contact .contact-form-wrapper .php-email-form .message-textarea {
    height: auto;
}

.pricing .plan-pricing.basic-plan .amount {
    font-size: 40px;
}

.pricing .plan-features {
    padding: 11px 16px 0;
}

.modal-header,
.modal-footer {
    background: #e59d02 !important;
}

.modal-footer .btn,
.modal-header .btn {
    background: #000 !important;
    border-color: #000 !important;
    color: #fff;
}

.modal-header .modal-title {
    color: #100f0f;
}

#billing-switch:checked,
#billing-switch:checked:focus,
#billing-switch:checked:active {
    background-color: #e59d02;
    border-color: #e59d02;
    border-color: #e59d02;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgb(229 157 2 / 20%);
}

#billing-switch::before {
    background-color: #e59d02;
}

#billing-switch:checked::before,
#billing-switch:checked:focus::before,
#billing-switch:checked:active::before {
    background-color: #e59d02;
}

#billing-switch {
    transition: background-color 0.3s, border-color 0.3s, transform 0.3s;
}

.switchCont {
    background: #191919;
    width: max-content;
    padding: 10px 20px;
    border-radius: 5px;
}

.offerCont {
    margin-top: -55px;
}

.offerCont .saveupto {
    background: #e59d02;
    padding: 2px 7px;
    font-size: 14px;
    border-radius: 5px;
    margin-bottom: 5px;
}

.monthly-billing .customBtn {
    position: absolute;
    top: 50%;
}

.monthly-billing .customBtn a {
    background-color: #e59d02 !important;
    border-color: #e59d02 !important;
    color: #000;
}

.d-b-mobile {
    display: none;
}

/* #hero{
    background-image: url('../img/hero/hero_bg_3.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
} */
/* .hero .hero-image-showcase .floating-card.card-2{
    right: 10px
} */
.monthly-billing {
    display: flex;
    flex-wrap: nowrap;
    gap: 4px;
}

.monthly-billing.column-mode {
    flex-direction: row;
    flex-wrap: wrap;
}

.monthly-billing .plan-col {
    width: 30%;
}

.monthly-billing .custom-plan {
    width: 10%;
}

.pricing .plan-header p {
    min-height: 40px;
}

.features .feature-item .feature-content h4 {
    font-size: 20px;
    margin-bottom: 0;
    min-height: 50px;
}

.features .feature-item .feature-content p {
    min-height: 107px;
}

.business-section .intro-content h2,
#personal-detail .intro-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--heading-color);
    line-height: 1.3;
}

.business-section .intro-content p,
#personal-detail .intro-content p {
    font-size: 18px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 35px;
    line-height: 1.6;
}

.call-to-action .content-right .floating-card.card-2 {
    /* bottom: 15%; */
    right: -60px !important;
    animation: float 3s ease-in-out infinite reverse;
    padding: 1rem;
    left: auto !important;
}
.subscriptionSection .btn-primary:hover{
    background: #000 !important;
    border: 1px solid #e59d02 !important;
    color: #e59d02 !important;
}
.call-to-action .features.personalFeatures .feature-item {
    align-items: flex-start;
}
.servicesMain{
    margin-top: 100px
}
.subscriptionSection .btn-primary{
    border: 1px solid #e9ad2e;
}











/* RESPONSIVENESS  */

@media (max-width: 1200px) {
    .header .logo {
        z-index: 9999;
    }
}

@media (max-width: 991px) {
    .servicesMain{
        margin-top: 50px
    }
    .monthly-billing .custom-plan {
        width: 18%;
    }

    .monthly-billing {
        flex-wrap: wrap;
    }

    .monthly-billing .plan-col {
        width: 100%;
    }

    .features .feature-item .feature-content h4 {
        min-height: inherit;
        margin-bottom: 8px;
    }

    .features .feature-item .feature-content p {
        min-height: inherit;
    }
}

@media (max-width: 576px) {
    .pricing .plan-pricing {
        padding: 5px 10px 5px;
    }
    .monthly-billing .customBtn {
        position: relative;
        top: 10%;
    }

    .monthly-billing .custom-plan {
        width: 37%;
    }

    .d-n-mobile {
        display: none !important;
    }

    .d-n-mobile {
        display: block !important;
    }

    section,
    .section {
        padding: 15px 0;
    }

    .hero.section {
        padding-top: 85px;
    }

    .call-to-action .content-right {
        margin-top: 0rem;
    }

    .section-title h2 {
        font-size: 17px;
    }

    .features .intro-content h2 {
        font-size: 18px;
    }

    .features .feature-item {
        padding: 16px;
    }

    .features .feature-item .feature-content .feature-icon i {
        font-size: 25px;
        width: 50px;
        height: 50px;
        border-radius: 8px;
    }

    .features .feature-item .feature-content p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .features .feature-item .feature-content h4 {
        font-size: 17px;
        margin-bottom: 8px;
    }

    .call-to-action h2 {
        font-size: clamp(1.2rem, 3vw, 2.5rem);
    }

    .call-to-action p {
        font-size: .9rem;
        line-height: 1.6;
        opacity: 0.9;
        margin: 11px 0 !important;
    }

    .call-to-action .cta-buttons .btn {
        padding: 0.7rem 1rem;
    }

    .features-tabs .nav-link {
        padding: 10px 10px;
        min-height: 40px;
    }

    .features-tabs .tabs-wrapper {
        border-radius: 8px;
        padding: 15px;
    }

    .features-tabs .content-wrapper .icon-badge i {
        font-size: 25px;
    }

    .features-tabs .content-wrapper .icon-badge {
        width: 50px;
        height: 50px;
        border-radius: 8px;
        margin-bottom: 16px;
    }

    .features-tabs .content-wrapper h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .features-tabs .content-wrapper {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .call-to-action .features .feature-item {
        gap: 0.3rem;
        padding: 0.3rem .5rem;
    }

    .hero .hero-image-showcase .image-wrapper {
        margin-top: 11px;
    }
}