/* Basic Reset & Body */
body {
    font-family: sans-serif;
    margin: 0;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Navbar */
.navbar {
    background-color: #fff;
    padding: 1rem 0;
    border-bottom: 1px solid #e7e7e7;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    font-size: 1.5em;
    font-weight: bold;
    /* Add your logo styles here */
}

.btn {
    padding: 0.75em 1.5em;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-primary {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

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

.btn-secondary {
    background-color: #32bb52;
    color: white;
    border-color: #32bb52;
    margin-right: 10px;
}

.btn-secondary:hover {
    background-color: #12812b;
}

.btn-outline {
    background-color: transparent;
    color: #007bff;
    border: 1px solid #007bff;
}
.btn-outline:hover {
    background-color: #007bff;
    color: white;
}


/* Hero Section */
.hero-section {
    text-align: center;
    /* padding: 60px 20px;*/
    padding: 5px 5px;
    background-color: #fff; /* Or a light background image/gradient */
}

.hero-section h1 {
    font-size: 2.8em;
    margin-bottom: 5px;
    color: #333;
}

.hero-section ul {
    list-style: none;
    padding: 0;
    margin-bottom: 5px;
}

.hero-section ul li {
    font-size: 1.1em;
    margin-bottom: 8px;
    position: relative;
    padding-left: 30px; /* Space for bullet */
}
.hero-section ul li::before {
    content: '•'; /* Or a custom checkmark icon */
    color: #007bff;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.upload-box-container {
    display: flex;
    justify-content: center;
    margin-top: 5px;
}

.upload-box {
    border: 2px dashed #007bff;
    padding: 10px;
    border-radius: 10px;
    width: 100%;
    max-width: 500px;
    text-align: center;
    cursor: pointer;
    background-color: #f0f8ff; /* Light blue background */
}

.upload-box p {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #555;
}

#file-name-display {
    display: block;
    margin-top: 15px;
    font-style: italic;
    color: #777;
}

/* Pricing Section */
.pricing-section {
    padding: 10px 10px;
    background-color: #f8f9fa;
}

.pricing-section h2 {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 15px;
}

.pricing-section .subheading {
    text-align: center;
    margin-bottom: 10px;
    color: #555;
    font-size: 1.1em;
}

.billing-toggle {
    text-align: center;
    margin-bottom: 40px;
}

.billing-toggle .btn {
    margin: 0 5px;
    background-color: #e9ecef;
    color: #495057;
    border: 1px solid #ced4da;
}

.billing-toggle .btn.active {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

.pricing-plans {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow plans to wrap on smaller screens */
}

.plan {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    width: 250px; /* Fixed width for each plan */
    text-align: center;
    border: 1px solid #e7e7e7;
    position: relative; /* For the "Most Popular" badge */
}

.plan.popular {
    border-top: 4px solid #007bff; /* Highlight for popular plan */
}

.most-popular-badge {
    position: absolute;
    top: -15px; /* Adjust to sit nicely above the card */
    left: 50%;
    transform: translateX(-50%);
    background-color: #007bff;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: bold;
}


.plan h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
}

.plan .price {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 20px;
    color: #007bff;
}
.plan .price .discount {
    font-size: 0.7em;
    font-weight: normal;
    color: #28a745; /* Green for discount */
    display: block; /* Make discount appear on a new line or adjust as needed */
    margin-top: 5px;
}
.plan .price .original-price { /* For strikethrough, if needed */
    text-decoration: line-through;
    color: #6c757d;
    font-size: 0.8em;
    margin-right: 5px;
}


.plan ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.plan ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px; /* Space for checkmark */
}

.plan ul li::before {
    content: '✓'; /* Checkmark */
    color: #28a745; /* Green checkmark */
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.upload-box.dragging {
    background-color: #e0f0ff; /* Lighter blue when dragging over */
    border-color: #0056b3;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 20px;
    background-color: #343a40;
    color: #f8f9fa;
}

.billing-toggle button {
    transition: all 0.3s ease;
}

.billing-toggle .active {
    background: #007bff;
    color: white;
    font-weight: bold;
}

/* ===============================================
   FORM STYLES (for Login, Register, Password Reset, etc.)
   =============================================== */

/* The main container box for the form */
.form-container {
    max-width: 500px;         /* Prevents the form from being too wide on large screens */
    margin: 50px auto;        /* Centers the box on the page */
    padding: 2em;
    background: #ffffff;      /* A clean white background */
    border: 1px solid #e0e0e0;
    border-radius: 8px;       /* Softer, rounded corners */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* A subtle shadow for depth */
}

/* Headings and paragraphs inside the form */
.form-container h2 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 10px;
    color: #333;
}

.form-container p {
    text-align: center;
    color: #666;
    margin-bottom: 25px;
}

/* The container for each label + input field */
.form-group {
    margin-bottom: 1.5em;
}

/* Styling for the labels (e.g., "Email", "Password") */
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

/* Styling for the text input fields */
.form-container input[type="email"],
.form-container input[type="password"],
.form-container input[type="text"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Important for padding not to affect width */
    font-size: 1em;
}

/* Styling for the main submit button */
.form-container .btn-primary {
    width: 100%;
    padding: 12px 20px;
    background-color: #007bff; /* A standard, professional blue */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.2s ease-in-out;
}

.form-container .btn-primary:hover {
    background-color: #0056b3; /* A darker blue on hover */
}

/* Styling for the extra link at the bottom (e.g., "Already have an account?") */
.form-link {
    text-align: center;
    margin-top: 20px;
}