/* New Light/Blue Theme Variables */
:root {
    --primary-color: #1e88e5;
    /* Medium Blue (Main Accent) */
    --secondary-color: #0d47a1;
    /* Darker Blue/Navy (Navbar/Headers) */
    --text-color: #212529;
    /* Dark Text */
    --card-bg: #ffffff;
    /* White Background for Cards */
    --highlight-bg: #42a5f5;
    /* Lighter Highlight Blue */
    --light-bg: #f8f9fa;
    /* Very light gray for elements */
}

body {
    font-family: "Inter", sans-serif;
    background-color: #ffffff;
    /* White Background */
    color: var(--text-color);
    /* Dark Text */
}

/* --- Navigation Styling (Updated for White Header Style) --- */
.navbar-light .nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    transition: color 0.3s;
}

.navbar-light .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-light .nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 700;
}

.display-4 {
    font-size: 38px;
}

/* Pricing Card Styling */
.pricing-card {
    background-color: var(--card-bg);
    /* White Card BG */
    border: 1px solid #dee2e6;
    /* Light Gray Border */
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    /* Lighter shadow for light theme */
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.pricing-card-header {
    background-color: var(--secondary-color);
    color: #ffffff;
    /* White text on Dark Blue Header */
    padding: 1.5rem;
    border-radius: 1rem 1rem 0 0;
    text-align: center;
}

.highlight-card {
    border: 2px solid var(--highlight-bg);
    transform: scale(1.05);
}

.highlight-card .pricing-card-header {
    background-color: var(--highlight-bg);
    /* Bright Blue Header */
    color: var(--text-color);
    /* Dark text for contrast */
    font-weight: 700;
}

/* Price display */
.price-display {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    /* Medium Blue Price */
}

.highlight-card .price-display {
    color: var(--secondary-color);
    /* Dark Blue Price on Highlight Card */
}

/* Toggle Switch Styling (Customizing Bootstrap Switch) */
.price-switch-container {
    display: inline-flex;
    align-items: center;
    background-color: var(--light-bg);
    /* Very light gray background */
    color: var(--text-color);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    border: 1px solid #dee2e6;
}

.price-switch-container label {
    margin: 0 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s;
}

.price-switch-container input[type="checkbox"] {
    appearance: none;
    width: 3.5rem;
    height: 1.5rem;
    background-color: #e0e0e0;
    /* Light gray track */
    border-radius: 1rem;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s;
}

.price-switch-container input[type="checkbox"]:before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 1.1rem;
    height: 1.1rem;
    background-color: var(--primary-color);
    /* Medium Blue Thumb */
    border-radius: 50%;
    transition: transform 0.3s, background-color 0.3s;
}

.price-switch-container input[type="checkbox"]:checked {
    background-color: var(--highlight-bg);
    /* Bright Blue track when checked */
}

.price-switch-container input[type="checkbox"]:checked:before {
    transform: translateX(2rem);
    background-color: var(--secondary-color);
    /* Darker Blue Thumb when checked */
}

.btn-custom-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: background-color 0.3s;
}

.btn-custom-primary:hover {
    background-color: var(--highlight-bg);
    border-color: var(--highlight-bg);
    color: var(--text-color);
}

/* Text utility classes updated for the blue theme */
.text-primary-custom {
    color: var(--secondary-color) !important;
    /* Use dark blue for primary callouts */
}

.text-highlight {
    color: var(--primary-color) !important;
    /* Use medium blue for checkmarks/accents */
}

/* Ensure the 'Best Value' badge looks good */
.highlight-card .badge.bg-dark {
    background-color: var(--secondary-color) !important;
    color: #ffffff !important;
}

.payment_box_title {
    font-size: 18px;
}

/* --- Content View for SPA Navigation --- */
.content-view {
    display: none;
    /* Hidden by default */
    padding-top: 2rem;
    animation: fadeIn 0.5s ease-in-out;
}

.content-view.active-view {
    display: block;
    /* Shown when active */
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer styling for new 3-column layout */
.footer-link {
    color: #fff;
    /* Light gray link color */
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--primary-color);
    /* Accent color on hover */
}

.social-icon {
    color: #ffffff;
    width: 24px;
    height: 24px;
    transition: color 0.2s;
}

.social-icon:hover {
    color: var(--highlight-bg);
}

.navbar-custom {
    background-color: var(--secondary-color);
}


/* .payment-card {
    background: #f9fafb;
    border-radius: 12px;
    padding: 10px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #d1d1d1;
} */

.payment-card {
    background: #f9fafb;
    border-radius: 22px;
    padding: 9px 15px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #d1d1d1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.payment-card:hover {
    background: #fff;
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.payment-card i,
.payment-card .custom-icon {
    font-size: 18px;
    /* margin-bottom: 10px; */
}

.payment-card span {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

/* Brand colors */
.paypal {
    color: #003087;
}

.stripe {
    color: #6772e5;
}

.visa {
    color: #1a1f71;
}

.mastercard {
    color: #eb001b;
}

.amex {
    color: #2e77bb;
}

.discover {
    color: #ff6000;
}

.payoneer {
    color: #ff6b00;
}

.googlepay {
    color: #4285f4;
}

.applepay {
    color: #111;
}

.footer_first_column_title {
    color: #fff;
}

.footer_first_column_p {
    color: #fff;
}

.footer_last_column_title {
    color: #fff !important;
}

/* .learn_more {
    border-color: 1px solid #bebcbc;
} */

.btn-custom-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
    font-weight: 600;
    border-radius: 0;
    transition: background-color 0.3s;
    font-size: 16px;
    padding: 13px 27px;
}

.learn_more {
    /* background-color: var(--primary-color); */
    border-color: 1px solid #6b3636;
    color: #000;
    font-weight: 600;
    border-radius: 0;
    transition: background-color 0.3s;
    font-size: 16px;
    padding: 13px 27px;
}

.register_btn {
    border-color: var(--primary-color);
    color: #ffffff;
    /* font-weight: 600; */
    border-radius: 0;
    transition: background-color 0.3s;
    font-size: 14px;
    padding: 6px 19px;
}

.pricing-card {
    width: 100%;
    max-width: 360px;
    /* keeps consistent card width */
    margin: 0 auto;
    /* centers cards inside columns */
}

/* Slide effect for pricing card content */


/* Slide-in effect for entire card */
.card-slide {
    transform: translateX(-100%);
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.card-slide.show {
    transform: translateX(0);
    opacity: 1;
}



@media screen and (max-width: 500px) {
    .sign_in_register_buttons {
        margin-bottom: 10px;
        margin-top: 6px;
    }

    .sign_in_register_buttons .sign_in_button {
        /* border: 1px solid black; */
        border: 1px solid black;
        color: #ffffff;
        /* font-weight: 600; */
        border-radius: 0;
        transition: background-color 0.3s;
        font-size: 14px;
        padding: 6px 19px;
    }

    .register_btn {
        border-color: var(--primary-color);
        color: #ffffff;
        /* font-weight: 600; */
        border-radius: 0;
        transition: background-color 0.3s;
        font-size: 14px;
        padding: 6px 19px;
    }

    .hero_title {
        font-size: 22px;
    }

    .lead {
        font-size: 18px;
        text-align: center;
        margin-top: -7px;
    }

    .btn-custom-primary {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
        color: #ffffff;
        font-weight: 600;
        border-radius: 1.5rem;
        transition: background-color 0.3s;
        font-size: 12px;
        padding: 7px 20px;
    }

    .learn_more {
        border-color: 1px solid #6b3636;
        /* color: #ffffff; */
        font-weight: 600;
        border-radius: 1.5rem;
        transition: background-color 0.3s;
        font-size: 12px;
        padding: 7px 20px;
    }

    .pricing_title {
        font-size: 28px;
    }

    .price-switch-container {
        display: inline-flex;
        align-items: center;
        background-color: var(--light-bg);
        color: var(--text-color);
        padding: 0.5rem 0.4rem;
        border-radius: 2rem;
        border: 1px solid #dee2e6;
    }

}