:root {
    --primary-purple: #7B3FE8;
    --primary-black: #1a1a1a;
    --text-color: #555;
    --background-light: #f8f9fa;
    --plan-dark-bg: var(--primary-purple);
    --plan-light-text: #ffffff;
    --plan-primary-text: #1e2a3b;
    --plan-secondary-text: #869ab8;
    --plan-accent-green: #28a745;
    --plan-border-color: #e5e9f2;
    --plan-button-light-bg: #f2e9ff;
    --plan-button-light-text: var(--primary-purple);
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--text-color);
    padding-top: 80px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    color: var(--primary-black);
}

/* Fixed Header Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-image: url('../images/header-bg.png');
    background-size: cover;
    background-position: center;
    transition: all 0.3s ease;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Add a semi-transparent overlay to ensure text readability */
.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1;
}

/* Ensure navbar content is above the overlay */
.navbar .container {
    position: relative;
    z-index: 2;
}

.navbar.scrolled::before {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.nav-link {
    color: var(--primary-black);
    /* margin: 0 1rem; */
    font-weight: 500;
}

.nav-link:hover {
    color: var(--primary-purple);
}

.nav-link.active {
    color: var(--primary-purple) !important;
}

.btn {
    border-radius: 20px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
}

.btn-dark {
    background-color: var(--primary-purple);
    border-color: var(--primary-purple);
}

.btn-dark:hover {
    background-color: #6a2cd8;
    border-color: #6a2cd8;
}

.btn-outline-dark {
    color: var(--primary-purple);
    border-color: var(--primary-purple);
}

.btn-outline-dark:hover {
    background-color: var(--primary-purple);
    color: #fff;
}

.hero-section {
    padding: 5rem 0;
}

.hero-section .col-md-6 {
    text-align: left;
}

.hero-video-container {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    background: #f8f9fa;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.hero-video {
    width: 100%;
    /* height: 480px; */
    max-width: 800px;
    object-fit: cover;
    border-radius: 25px;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(123, 63, 232, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-purple);
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
    background: white;
}

/* Mobile Responsive Hero Video */
@media (max-width: 991.98px) {
    .hero-video-container {
        max-width: 100%;
    }
    .hero-video {
        height: 260px;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-video-container {
        margin-top: 0;              /* ✅ was -60px (caused overlap) */
        border-radius: 20px;
        margin-bottom: 2rem;
        max-width: 100%;
    }
    .hero-video {
        border-radius: 20px;
        height: 180px;
        max-width: 100%;
    }
}

.badge {
    background-color: #f2e9ff;
    color: var(--primary-purple);
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-weight: 500;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-top: 1rem;
}

.hero-section p {
    color: var(--text-color);
    font-size: 1.1rem;
}

.hero-section .tagline {
    color: var(--primary-purple);
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
    margin: 1.5rem 0 0 0;
    font-style: italic;
}

.highlight {
    color: var(--primary-purple);
    font-weight: 700;
}

.partner-logos img {
    height: 25px;
    margin: 0 1.5rem;
    filter: grayscale(100%);
    opacity: 0.6;
}

.section {
    padding: 4rem 0;
}

#how-it-works .icon {
    color: var(--primary-purple);
}

.why-choose-us-card {
    padding: 1.5rem;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.why-choose-us-card:hover {
    transform: translateY(-5px);
}

.why-choose-us-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-purple);
}

.review-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    margin-bottom: 1rem;
    transition: transform 0.2s;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-card:last-child {
    margin-bottom: 0;
}

.faq-item {
    border-bottom: 1px solid #dee2e6;
    padding: 1rem 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item button {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-black);
    padding: 1rem;
    border-radius: 8px;
    transition: background-color 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item button:hover {
    background-color: var(--background-light);
}

.faq-item .card-body {
    padding: 0 1rem 1rem 1rem;
    font-size: 1rem;
    color: var(--text-color);
}

.faq-item button .fa-plus {
    transition: transform 0.3s ease;
}

.faq-item button[aria-expanded="true"] .fa-plus {
    transform: rotate(45deg);
}

.cta-section {
    background: var(--primary-purple);
    color: #fff;
    border-radius: 20px;
    padding: 4rem;
}

.cta-section h2, .cta-section p, .cta-section h4 {
    color: #fff;
}

.footer a {
    color: var(--text-color);
    text-decoration: none;
}

.footer a:hover {
    color: var(--primary-purple);
}

/* Footer specific link styles */
footer a {
    text-decoration: none !important;
}

footer a:hover {
    text-decoration: none !important;
    color: var(--primary-purple);
}

#reviews .row {
    margin: 0 -0.5rem;
}

#reviews .col-md-6,
#reviews .col-lg-3 {
    padding: 0 0.5rem;
}

#reviews {
    background-color: var(--background-light);
    margin: 0 -15px;
    padding: 4rem 15px;
    border-radius: 20px;
}

#reviews .container {
    max-width: 100%;
}

/* Use Case Cards Styles */
.use-case-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 25px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.use-case-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-purple), #9c5cf0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.use-case-card h4 {
    color: var(--primary-black);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.use-case-description {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.use-case-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.feature-tag {
    background: #f8f9fa;
    color: var(--primary-purple);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #e9ecef;
}

/* Go to Top Button */
.go-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-purple);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 20px rgba(123, 63, 232, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.go-to-top:hover {
    background: #6a2cd8;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(123, 63, 232, 0.4);
}

.go-to-top.show {
    display: flex;
}

/* Mobile Navigation Toggle Button */
.custom-toggler {
    border: none;
    padding: 0.5rem;
    background: transparent;
    position: relative;
    width: 40px;
    height: 40px;
    display: none;
}

@media (max-width: 991.98px) {
    .custom-toggler {
        display: block;
    }
}

.custom-toggler:focus {
    box-shadow: none;
    outline: none;
}

.hamburger-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 18px;
    transition: all 0.3s ease;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary-black);
    margin: 4px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

.close-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-black);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

/* Active state when menu is open */
.custom-toggler.active .hamburger-icon {
    opacity: 0;
}

.custom-toggler.active .close-icon {
    opacity: 1;
    pointer-events: auto;
}

/* Background sections with rounded corners */
.bg-light {
    border-radius: 20px;
}

.section.bg-light {
    border-radius: 20px;
    margin: 2rem 0;
}

/* Mobile responsive radius adjustments */
@media (max-width: 768px) {
    #reviews {
        border-radius: 15px;
    }
    
    .bg-light {
        border-radius: 15px;
    }
    
    .section.bg-light {
        border-radius: 15px;
    }
}

footer {
    position: relative;
    background-color: transparent !important; /* Override default light background */
}

footer > section {
    position: relative;
    background-image: url('../images/header-bg.png');
    background-size: cover;
    background-position: center;
    color: var(--primary-black); /* Change text color for better contrast */
    z-index: 1;
}

footer > section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: -1;
}

footer .text-reset {
    color: var(--primary-black) !important;
    font-weight: 500;
    transition: color 0.3s;
}

footer .text-reset:hover {
    color: var(--primary-purple) !important;
}

footer h6 {
    color: black;
    font-weight: 700;
}

/* Subscription Section Styles */
.pricing-card {
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.pricing-card.popular {
    border-color: var(--primary-purple);
    border-width: 2px;
    background-color: #f8f5ff;
}

.best-value-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #28a745;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.savings-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background-color: #ffefd7;
    color: #b37400;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.pricing-header h3 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.pricing-header p {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.special-launch-badge {
    display: inline-block;
    border: 1px dashed #28a745;
    color: #28a745;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin: 0 auto 1.5rem;
    font-weight: 500;
}

.price h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.price h2 small {
    font-size: 1rem;
    font-weight: 400;
}

.price p {
    margin-bottom: 1.5rem;
}

.plan-subtitle {
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.features-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.features-list i {
    color: #28a745;
    margin-right: 0.75rem;
    margin-top: 5px;
}

.coming-soon {
    background-color: #eaf6ff;
    color: #007bff;
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
    font-weight: 500;
    white-space: nowrap;
}

.added-benefits {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 1rem;
    text-align: left;
    margin-bottom: 2rem;
}

.added-benefits h5 {
    font-size: 1rem;
    font-weight: 700;
}

.added-benefits h5 i {
    color: var(--text-color);
    font-size: 0.9rem;
}

.added-benefits p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* New Subscription Section Styles */
.pricing-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-section .section-subtitle {
    color: var(--plan-secondary-text);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* New Pricing Cards */
.pricing-card-new {
    border: 1px solid var(--plan-border-color);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    background-color: var(--plan-light-text);
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.pricing-card-new .plan-name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    border: 1px solid var(--plan-border-color);
    color: var(--plan-primary-text);
}

.pricing-card-new .plan-price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--plan-primary-text);
    margin-bottom: 0.5rem;
}

.pricing-card-new .plan-price small {
    font-size: 1rem;
    color: var(--plan-secondary-text);
    font-weight: 400;
}

.pricing-card-new .plan-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.pricing-card-new .plan-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    color: var(--plan-primary-text);
}

.pricing-card-new .plan-features li i {
    color: var(--plan-accent-green);
    margin-right: 1rem;
    margin-top: 5px;
}

/* Popular (Advance) Card */
.pricing-card-new.popular {
    background-color: var(--plan-dark-bg);
    color: var(--plan-light-text);
    border-color: var(--plan-dark-bg);
    z-index: 2;
}

.pricing-card-new.popular .plan-name {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--plan-light-text);
}

.pricing-card-new.popular .plan-price,
.pricing-card-new.popular .plan-features li {
    color: var(--plan-light-text);
}

.pricing-card-new.popular .plan-price small {
    color: rgba(255, 255, 255, 0.7);
}


/* Buttons */
.btn-choose-plan {
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-choose-plan.light {
    background-color: var(--plan-button-light-bg);
    color: var(--plan-button-light-text);
    border: none;
}

.btn-choose-plan.light:hover {
    background-color: #d1f0ff;
}

.btn-choose-plan.dark {
    background-color: var(--plan-light-text);
    color: var(--plan-dark-bg);
    border: none;
}

.btn-choose-plan.dark:hover {
    background-color: #f0f0f0;
}

/* Detailed Comparison Link */
.plan-comparison-link {
    display: block;
    text-align: center;
    margin-top: 3rem;
    font-weight: 500;
    color: var(--plan-primary-text);
}

.plan-comparison-link:hover {
    color: var(--plan-dark-bg);
}

/* Inherited coming-soon styles need to be adjusted for the dark card */
.pricing-card-new .coming-soon {
    background-color: #eaf6ff;
    color: #007bff;
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
    font-weight: 500;
    margin-left: 0.5rem;
    white-space: nowrap;
}

.pricing-card-new.popular .coming-soon {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--plan-light-text);
}

/* Inherited Added Benefits */
.pricing-card-new .added-benefits {
    background-color: var(--background-light);
    border-radius: 10px;
    padding: 1rem;
    text-align: left;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.pricing-card-new.popular .added-benefits {
    background-color: rgba(255, 255, 255, 0.1);
}

.pricing-card-new.popular .added-benefits h5,
.pricing-card-new.popular .added-benefits p {
    color: var(--plan-light-text);
}

.pricing-card-new.popular .added-benefits h5 i {
     color: rgba(255, 255, 255, 0.7);
}

.pricing-card-new.popular .plan-features li .fa-check-circle {
    color: var(--plan-light-text);
}

.pricing-card-new .plan-features li .fa-times-circle {
    color: #f15b6f;
}

/* Restored Content Styles */
.pricing-card-new .pricing-header {
    margin-bottom: 1.5rem;
}

.pricing-card-new .pricing-header h3 {
    font-size: 1.2rem;
    color: var(--plan-primary-text);
    margin-bottom: 0.25rem;
}

.pricing-card-new .pricing-header p {
    color: var(--plan-secondary-text);
    font-weight: 500;
}

.pricing-card-new.popular .pricing-header h3,
.pricing-card-new.popular .pricing-header p {
    color: var(--plan-light-text);
}

.pricing-card-new .special-launch-badge {
    display: inline-block;
    border: 1px dashed var(--plan-accent-green);
    color: var(--plan-accent-green);
    padding: 0.5rem 1rem;
    border-radius: 12px;
    margin: 0 auto 1.5rem;
    font-weight: 500;
    position: relative;
    background-color: #f0fff4;
}

.pricing-card-new .special-launch-badge::before,
.pricing-card-new .special-launch-badge::after {
    content: '';
    position: absolute;
    left: 25%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}

.pricing-card-new .special-launch-badge::before {
    bottom: -11px;
    border-top: 10px dashed var(--plan-accent-green);
    z-index: 0;
}

.pricing-card-new .special-launch-badge::after {
    bottom: -10px;
    border-top: 10px solid #f0fff4;
    z-index: 1;
}

.pricing-card-new.popular .special-launch-badge {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--plan-light-text);
    background-color: rgba(255, 255, 255, 0.1);
}

.pricing-card-new.popular .special-launch-badge::before {
    border-top-color: rgba(255, 255, 255, 0.5);
}

.pricing-card-new.popular .special-launch-badge::after {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.price-container {
    margin-bottom: 1.5rem;
}

.price-container .price-main {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--plan-primary-text);
}

.price-container .price-main del {
    font-size: 1.5rem;
    color: var(--plan-secondary-text);
    font-weight: 400;
}

.price-container .price-sub {
    color: var(--plan-secondary-text);
}

.price-container .price-annual {
    margin-top: 0.5rem;
    color: var(--plan-secondary-text);
    font-weight: 500;
}

.pricing-card-new.popular .price-container .price-main,
.pricing-card-new.popular .price-container .price-main del,
.pricing-card-new.popular .price-container .price-sub,
.pricing-card-new.popular .price-container .price-annual {
    color: var(--plan-light-text);
}

.pricing-card-new.popular .price-container .price-main del,
.pricing-card-new.popular .price-container .price-sub {
     color: rgba(255, 255, 255, 0.7);
}

.plan-tagline {
    font-size: 1.1rem;
    color: var(--plan-primary-text);
    margin-bottom: 1.5rem;
}

.pricing-card-new.popular .plan-tagline {
    color: var(--plan-light-text);
}

.savings-pill {
    background-color: #e0f8e6;
    color: #28a745;
    font-size: 0.8rem;
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    margin-left: 0.5rem;
}

/* Mobile Carousel for Pricing Section */
@media (max-width: 767.98px) {
    .d-lg-flex {
        display: none !important;
    }
    .pricing-swiper-container {
        display: block !important;
        padding-top: 3rem;
        padding-bottom: 2rem;
        overflow: visible;
    }
    
    .pricing-swiper {
        width: 100%;
        padding-bottom: 2.5rem; /* Space for pagination */
        overflow: visible;
    }

    .pricing-swiper .swiper-slide {
        width: 85%;
        padding: 0 0.5rem;
        overflow: visible;
    }

    .pricing-swiper .pricing-card-new {
        padding: 1.5rem;
        margin-top: 1rem;
        overflow: visible;
        position: relative;
    }

    .pricing-swiper .plan-name {
        margin-bottom: 1rem;
        font-size: .9rem;
    }
    
    .pricing-swiper .special-launch-badge {
        margin-bottom: 1rem;
        padding: 0.4rem 0.8rem;
    }

    .pricing-swiper .price-container {
        margin-bottom: 1rem;
    }
    
    .pricing-swiper .plan-features {
        margin-bottom: 1.5rem;
    }

    .pricing-swiper .plan-price {
        font-size: 2.2rem;
    }

    .pricing-swiper .plan-price small {
        font-size: 0.8rem;
    }

    .pricing-swiper .plan-was-price {
        font-size: 1.2rem;
    }

    .pricing-swiper .yearly-price {
        font-size: 1rem;
    }

    .pricing-swiper .yearly-was-price {
        font-size: 0.9rem;
    }

    .pricing-swiper .best-value-badge {
        z-index: 100;
        position: absolute;
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
        background-color: #28a745;
        color: white;
        padding: 0.4rem 1.2rem;
        border-radius: 15px;
        font-weight: 700;
        font-size: 0.8rem;
        white-space: nowrap;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }

    .swiper-pagination-bullet {
        background-color: #d1d5db;
        width: 8px;
        height: 8px;
        opacity: 1;
    }

    .swiper-pagination-bullet-active {
        background-color: var(--primary-purple);
    }
}

/* Mobile Swiper Pricing Section Styles */
.pricing-swiper-container {
    overflow: visible;
    padding: 0 2rem;
    display: none;
}

.pricing-swiper {
    width: 100%;
    height: auto;
    padding-bottom: 3rem;
    overflow: visible;
}

.pricing-swiper .swiper-slide {
    width: 85%;
    max-width: 350px;
    height: auto;
    display: flex;
    justify-content: center;
    overflow: visible;
}

.pricing-swiper .pricing-card-new {
    width: 100%;
    height: auto;
    margin: 0;
    overflow: visible;
}

/* Swiper Pagination Styles */
.pricing-swiper .swiper-pagination {
    bottom: 0;
    position: absolute;
    width: 100%;
    text-align: center;
}

.pricing-swiper .swiper-pagination-bullet {
    background-color: #d1d5db;
    width: 10px;
    height: 10px;
    opacity: 1;
    margin: 0 4px;
    transition: all 0.3s ease;
}

.pricing-swiper .swiper-pagination-bullet-active {
    background-color: var(--primary-purple);
    transform: scale(1.2);
}

/* Styling for plan-price-container */
.plan-price-container {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 0.5rem;
}
.plan-price-container .plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    /* color: var(--plan-primary-text); */
    color: #28a745;
}
.plan-price-container .yearly-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--plan-secondary-text);
}
.plan-price-container small {
    font-size: 1rem;
    font-weight: 400;
    margin-left: 0.25rem;
}
.pricing-card-new.popular .plan-price-container .plan-price,
.pricing-card-new.popular .plan-price-container small {
    color: var(--plan-light-text);
}
.pricing-card-new .plan-features li .fa-times-circle {
    color: #f15b6f;
}
.pricing-card-new .special-launch-badge {
    display: inline-block;
    border: 1px dashed var(--plan-accent-green);
    color: var(--plan-accent-green);
    padding: 0.5rem 1rem;
    border-radius: 12px;
    margin: 0 auto 1.5rem;
    font-weight: 500;
    position: relative;
    background-color: #f0fff4;
}
.pricing-card-new.popular .special-launch-badge {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--plan-light-text);
    background-color: rgba(255, 255, 255, 0.1);
}
.plan-price-container .plan-was-price {
    font-size: 1.5rem;
    color: var(--plan-secondary-text);
    font-weight: 400;
    margin-left: 0.5rem;
}
.plan-price-container .yearly-was-price {
    font-size: 1rem;
    font-weight: 400;
    color: var(--plan-secondary-text);
}
.pricing-card-new.popular .plan-price-container .plan-was-price {
    color: rgba(255, 255, 255, 0.7);
}
/* Restored Content Styles */
.pricing-card-new .pricing-header {
    margin-bottom: 1.5rem;
}
.pricing-card-new .pricing-header h3 {
    font-size: 1.2rem;
    color: var(--plan-primary-text);
    margin-bottom: 0.25rem;
}
.pricing-card-new .pricing-header p {
    color: var(--plan-secondary-text);
    font-weight: 500;
}
.pricing-card-new.popular .pricing-header h3,
.pricing-card-new.popular .pricing-header p {
    color: var(--plan-light-text);
}
.plan-price-container .yearly-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--plan-secondary-text);
}
.plan-price-container .yearly-was-price {
    font-size: 1rem;
    font-weight: 400;
    color: var(--plan-secondary-text);
}

/* Speed Advantage Section */
.speed-advantage-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
    border-radius: 20px;
    margin: 2rem 0;
}

.speed-advantage-section img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    border-radius: 20px;
}

.speed-advantage-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(135deg, rgba(123, 63, 232, 0.8) 0%, rgba(106, 44, 216, 0.8) 50%, rgba(90, 28, 200, 0.8) 100%); */
    z-index: 2;
    border-radius: 20px;
}

.speed-advantage-section .container {
    position: relative;
    z-index: 3;
}

.speed-advantage-section h3 {
    color: black;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    line-height: 1.3;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .speed-advantage-section {
        padding: 4rem 0;
        min-height: 250px;
    }
    
    .speed-advantage-section h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .speed-advantage-section h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
  .plan-savings-badge, .best-value-badge {
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
    white-space: nowrap;
  }
  .btn-choose-plan {
    width: 100%;
    font-size: 1rem;
    padding: 1rem 0.5rem;
  }
}

.plan-savings {
    color: #198754; /* Bootstrap's text-success */
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.plan-savings-badge {
    background-color: white;
    color: #198754;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 999px;
    padding: 0.4em 1em;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.plan-savings-badge-2 {
    background-color: #198754;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 999px;
    padding: 0.4em 1em;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.custom-primary-bullets {
    list-style: disc inside;
  }
  .custom-primary-bullets li::marker {
    color: var(--primary-purple); /* Bootstrap primary */
  }

  .text-primary-purple {
    color: var(--primary-purple) !important;
  }

@media (max-width: 991.98px) {
  .mobile-tabs {
    flex-wrap: nowrap !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
  }
  .mobile-tabs::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }
  .mobile-tabs .nav-link {
    white-space: nowrap;
    min-width: 113px;
    text-align: center;
  }
}

.accordion-button:not(.collapsed){
    background-color: #8952ea !important;
    color: white  !important;
}