:root {
    --primary-color: #2563eb;
    --primary-light: #eff6ff;
    --border-radius: 12px;
    --bg-gray-50: #f9fafb;
    --bg-gray-100: #f3f4f6;
    --bg-blue-50: #f0f7ff;
    --bg-gray-200: #e5e7eb;
    --bg-gray-300: #d1d5db;
    --success-color: #10b981;
    --success-light: #ecfdf5;
    --success-subtle-color: #d1fae5;
    --bs-purple: #6f42c1;
}

.navbar {
    height: 60px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: #f0c244;
}

.btn-white {
    background-color: #fff;
    border: 1px solid #333;
    color: #333 !important;
    transition: all 0.2s ease;
}

.btn-white:hover {
    background-color: #333;
    border-color: #333;
    color: #fff !important;
}

.hover-white:hover {
    color: #333 !important;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: #333 !important;
}

.navbar-brand img {
    filter: brightness(0);
}

/* Footer Styles */
.footer-section {
    background: #f8fafc;
    padding-top: 4rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Newsletter Section */
.footer-newsletter {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2563eb 100%);
    padding: 3rem;
    color: white;
}

.footer-newsletter h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.footer-newsletter p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.newsletter-form .input-group {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 0.5rem;
    border-radius: 50px;
}

.newsletter-form .form-control {
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
}

.newsletter-form .form-control:focus {
    box-shadow: none;
}

.newsletter-form .btn {
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
}

/* Main Footer */
.footer-main {
    padding: 2rem 0 4rem;
}

.footer-logo {
    height: 40px;
    width: auto;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    text-decoration: none;
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #4b5563;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #4b5563;
}

.footer-contact li i {
    color: var(--primary-color);
}

.footer-contact a {
    color: #4b5563;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Footer Bottom */
.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
}

.footer-legal a {
    color: #4b5563;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

@media (max-width: 768px) {
    .footer-newsletter {
        padding: 2rem;
    }

    .footer-legal {
        justify-content: center;
        margin-top: 1rem;
    }

    .footer-bottom {
        text-align: center;
    }
}

h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: #1f2937;
}

.border-dashed {
    border-style: dashed !important;
    border-color: #dee2e6 !important;
}

.dropzone-container {
    background-color: var(--primary-light);
    transition: all 0.3s ease;
}

.dropzone-container:hover {
    border-color: var(--primary-color) !important;
    background-color: #fff;
}

.stat-item {
    padding: 2rem;
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item i {
    font-size: 2rem;
}

.feature-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    margin: 0 auto;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.dropzone {
    border: none !important;
    background: transparent !important;
    min-height: 150px;
}

.badge {
    padding: 0.5rem 1rem;
    font-weight: 500;
}

.pricing-card {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.active {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-light);
    color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, .125);
}

.feature-card i {
    font-size: 2rem;
}

.about-wrapper {
    background: linear-gradient(145deg, #ffffff 0%, var(--primary-light) 100%);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 42px;
    height: 42px;
    background-color: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.feature-text h5 {
    font-size: 1rem;
    font-weight: 600;
}

.feature-text p {
    font-size: 0.875rem;
}

.about-image {
    position: relative;
    padding: 1rem;
}

.image-wrapper {
    position: relative;
}

.stats-card {
    bottom: 2rem;
    left: -2rem;
}

.security-badge {
    top: 2rem;
    right: -2rem;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-card,
    .security-badge {
        position: static;
        margin: 1rem 0;
    }
}

.bg-success-subtle {
    background-color: #e8f5e9;
}

.btn-link:hover {
    text-decoration: underline !important;
}

/* Add these styles for the SVG */
.dashboard-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

/* Animation for the chart line */
.dashboard-svg path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 2s ease forwards;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

/* Hover effect for interactive elements */
.dashboard-svg rect:not(:first-child) {
    transition: fill 0.3s ease;
}

.dashboard-svg rect:not(:first-child):hover {
    fill: #e9ecef;
}

/* Pulse animation for activity indicators */
.dashboard-svg circle {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Ensure the SVG container maintains aspect ratio */
.image-wrapper {
    aspect-ratio: 4/3;
    width: 100%;
}

/* Stats Section Styles */
.stats-wrapper {
    background: linear-gradient(145deg, #ffffff 0%, var(--primary-light) 100%);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

.stat-icon {
    position: relative;
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
}

.icon-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    opacity: 0.2;
    animation: pulseRing 2s infinite;
}

.stat-content {
    text-align: center;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    line-height: 1;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.plus {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
}

.stat-label {
    color: #718096;
    font-size: 0.875rem;
    margin: 0;
}

.stat-chart {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    opacity: 0.1;
}

.stat-graph {
    width: 100%;
    height: 100%;
}

.stat-line {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 2;
    stroke-linecap: round;
}

@keyframes pulseRing {
    0% {
        transform: scale(0.8);
        opacity: 0.3;
    }

    50% {
        transform: scale(1);
        opacity: 0.1;
    }

    100% {
        transform: scale(0.8);
        opacity: 0.3;
    }
}

/* Counter Animation */
.counter {
    display: inline-block;
}

/* How it Works Styles */
.steps-wrapper {
    padding: 2rem 0;
}

.steps-connection {
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 3px;
    background: linear-gradient(90deg,
            var(--primary-color) 0%,
            var(--primary-color) 50%,
            #e9ecef 50%,
            #e9ecef 100%);
    z-index: 0;
}

.step-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1;
}

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

.step-card.active {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.step-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.step-icon {
    width: 100%;
    height: 100%;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.step-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.step-icon-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0.2;
    animation: pulseRing 2s infinite;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.step-description {
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.step-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.step-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.step-feature i {
    font-size: 1rem;
}

@keyframes pulseRing {
    0% {
        transform: scale(0.95);
        opacity: 0.3;
    }

    50% {
        transform: scale(1);
        opacity: 0.1;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.3;
    }
}

@media (max-width: 768px) {
    .steps-connection {
        display: none;
    }

    .step-card {
        margin-bottom: 2rem;
    }
}

/* Powerful Features Section - Distinct Styling */
.powerful-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.powerful-feature-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.powerful-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.feature-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.powerful-icon-wrap {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.powerful-feature-card:hover .powerful-icon-wrap {
    background: var(--primary-color);
    color: white;
}

.powerful-feature-badge {
    background: rgba(0, 112, 243, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.powerful-feature-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.powerful-feature-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.powerful-feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.powerful-feature-list .list-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #475569;
}

.powerful-feature-list .list-item i {
    color: var(--primary-color);
    font-size: 1rem;
}

.powerful-feature-action {
    margin-top: auto;
}

.powerful-feature-action .btn-link {
    font-weight: 500;
    text-decoration: none;
}

.powerful-feature-action .btn-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .powerful-features-grid {
        grid-template-columns: 1fr;
    }
}

/* Pricing Section Styles */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.pricing-card.popular {
    background: linear-gradient(145deg, #ffffff 0%, var(--primary-light) 100%);
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.period {
    font-size: 1rem;
    color: #718096;
    font-weight: 400;
}

.pricing-features {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #4a5568;
}

.feature-item i {
    font-size: 1rem;
    width: 20px;
    color: var(--primary-color);
}

.feature-item.disabled {
    color: #a0aec0;
}

.feature-item.disabled i {
    color: #cbd5e0;
}

.pricing-toggle {
    background: #f7fafc;
    display: inline-flex;
    align-items: center;
    padding: 0.5rem;
    border-radius: 30px;
}

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

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

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

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

input:checked+.slider {
    background-color: var(--primary-color);
}

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

.save-badge {
    background: #48bb78;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    margin-left: 0.5rem;
}

.included-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: #718096;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        transform: none;
    }

    .included-features {
        flex-direction: column;
        gap: 1rem;
    }
}

/* FAQ Section Styles */
.faq-wrapper {
    position: relative;
}

.faq-grid {
    display: grid;
    gap: 1rem;
}

.faq-card {
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.faq-header {
    padding: 0.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.faq-title {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.faq-title h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: #2d3748;
}

.faq-toggle {
    color: #718096;
    transition: transform 0.3s ease;
}

.faq-card[aria-expanded="true"] .faq-toggle {
    transform: rotate(180deg);
}

.faq-content {
    padding: 0 1.5rem 1.5rem;
    color: #4a5568;
    font-size: 0.95rem;
}

.faq-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

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

.faq-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

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

.size-limits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.limit-item {
    background: #f7fafc;
    padding: 0.75rem;
    border-radius: 8px;
    text-align: center;
}

.limit-item .plan {
    display: block;
    font-size: 0.8rem;
    color: #718096;
}

.limit-item .size {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
}

.support-options {
    display: grid;
    gap: 0.75rem;
    margin-top: 1rem;
}

.support-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f7fafc;
    border-radius: 8px;
}

.support-item i {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .size-limits {
        grid-template-columns: 1fr;
    }

    /* .faq-header { */
        /* flex-direction: column; */
        /* align-items: flex-start; */
    /* } */

    /* .faq-title { */
        /* width: 100%; */
    /* } */
}

/* Login Page Styles */
.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.input-group-text {
    color: #6b7280;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-input:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

/* Registration Page Styles */
.form-control.is-invalid:focus,
.was-validated .form-control:invalid:focus {
    box-shadow: none;
    border-color: #dc3545;
}

.form-control.is-valid:focus,
.was-validated .form-control:valid:focus {
    box-shadow: none;
    border-color: #198754;
}

.form-check a {
    text-decoration: none;
}

.form-check a:hover {
    text-decoration: underline;
}

/* Password Strength Indicator */
.password-strength {
    height: 4px;
    margin-top: 8px;
    border-radius: 2px;
    background: #e9ecef;
    transition: all 0.3s ease;
}

.password-strength-bar {
    height: 100%;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.strength-weak {
    width: 33.33%;
    background: #dc3545;
}

.strength-medium {
    width: 66.66%;
    background: #ffc107;
}

.strength-strong {
    width: 100%;
    background: #198754;
}

/* Forgot Password Page Styles */
.icon-wrapper {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.help-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 50%;
}

.help-item:hover .help-icon {
    background: var(--primary-color);
    color: white;
    transition: all 0.3s ease;
}

.modal-content {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Reset Password Page Styles */
.password-requirements {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.requirement {
    color: #6b7280;
}

.requirement i.text-success {
    color: #198754 !important;
}

.password-strength {
    height: 4px;
    background: #e9ecef;
    border-radius: 2px;
    overflow: hidden;
}

.password-strength-bar {
    height: 100%;
    width: 0;
    transition: all 0.3s ease;
}

.strength-weak {
    background: #dc3545;
}

.strength-medium {
    background: #ffc107;
}

.strength-strong {
    background: #198754;
}

.input-group .btn-outline-secondary {
    border-color: #ced4da;
}

.input-group .btn-outline-secondary:hover {
    background-color: #f8f9fa;
}

.input-group .btn-outline-secondary:focus {
    box-shadow: none;
}

.advanced-options,
.advanced-options label {
    text-align: left;  /* Override parent's center alignment */
}

.pro-badge {
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
    background-color: #FFB020;
    color: #fff;
    border-radius: 4px;
    margin-left: 0.5rem;
}

.pro-feature,
.business-feature {
    opacity: 0.7;
    cursor: not-allowed;
    position: relative;
}

.pro-feature input,
.business-feature input {
    pointer-events: none;
}

.pro-feature::after,
.business-feature::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.business-badge {
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
    background-color: #007bff;
    color: #fff;
    border-radius: 4px;
    margin-left: 0.5rem;
}

.pricing-toggle {
    background: var(--bg-gray-50);
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 30px;
}

.pricing-toggle .form-check-input {
    width: 3rem;
    height: 1.5rem;
    margin-left: 1rem;
    margin-top: 0;
    cursor: pointer;
}

.pricing-card {
    position: relative;
    overflow: visible  ;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

/* New Popular Badge Style */
.popular-badge {
    position: absolute;
    top: 0;
    right: 2rem;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.popular-badge span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.popular-badge span::before {
    content: "★";
    font-size: 0.9rem;
}

/* Price Animation */
.price {
    transition: opacity 0.3s ease;
}

.price.d-none {
    display: none !important;
}

.badge.bg-success-subtle {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    vertical-align: middle;
}

.pricing-header h5 {
    font-size: 0.875rem;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.price-value {
    position: relative;
    padding: 0.5rem 0;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
    margin-top: 0.5rem;
    display: inline-block;
}

.amount {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin: 0 0.2rem;
}

.decimal {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
    margin-top: 0.5rem;
    display: inline-block;
}

.pricing-duration {
    margin-top: 0.5rem;
}

.pricing-duration span {
    font-size: 0.875rem;
    color: #6c757d;
}

.annual-save-badge {
    display: inline-block;
    background: var(--success-subtle-color);
    color: var(--success-color);
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-top: 0.5rem;
}

/* SweetAlert2 Custom Styling */
.swal2-popup {
    border-radius: var(--border-radius) !important;
    padding: 2rem !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.swal2-title {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    color: #1f2937 !important;
    margin-bottom: 1rem !important;
    padding: 0 !important;
}

.swal2-html-container {
    font-size: 0.95rem !important;
    color: #4b5563 !important;
    margin: 1rem 0 !important;
    padding: 0 !important;
}

/* Button Styling */
.swal2-actions {
    gap: 0.75rem !important;
    margin-top: 1.5rem !important;
}

.swal2-confirm,
.swal2-cancel,
.swal2-deny {
    padding: 0.6rem 1.5rem !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    border-radius: 8px !important;
    margin: 0 !important;
    transition: all 0.2s ease !important;
}

.swal2-confirm {
    background: var(--primary-color) !important;
    color: white !important;
    border: none !important;
}

.swal2-confirm:hover {
    background: #1d4ed8 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2) !important;
}

.swal2-cancel {
    background: var(--bg-gray-50) !important;
    color: #4b5563 !important;
    border: 1px solid var(--bg-gray-200) !important;
}

.swal2-cancel:hover {
    background: var(--bg-gray-100) !important;
    transform: translateY(-1px) !important;
}

.swal2-deny {
    background: #fee2e2 !important;
    color: #dc2626 !important;
    border: none !important;
}

.swal2-deny:hover {
    background: #fecaca !important;
    transform: translateY(-1px) !important;
}

/* Icon Styling */
.swal2-icon {
    border-width: 2px !important;
    margin: 1.5rem auto !important;
}

.swal2-icon.swal2-warning {
    border-color: #f59e0b !important;
    color: #f59e0b !important;
}

.swal2-icon.swal2-error {
    border-color: #dc2626 !important;
    color: #dc2626 !important;
}

.swal2-icon.swal2-success {
    border-color: var(--success-color) !important;
    color: var(--success-color) !important;
}

.swal2-icon.swal2-info {
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
}

/* Form Controls */
.swal2-textarea,
.swal2-input {
    border: 1px solid var(--bg-gray-200) !important;
    border-radius: 8px !important;
    padding: 0.75rem 1rem !important;
    font-size: 0.95rem !important;
    margin: 1rem 0 !important;
    transition: all 0.2s ease !important;
}

.swal2-textarea:focus,
.swal2-input:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1) !important;
    outline: none !important;
}

/* Validation Message */
.swal2-validation-message {
    background: #fee2e2 !important;
    color: #dc2626 !important;
    font-size: 0.875rem !important;
    border-radius: 6px !important;
    margin: 1rem 0 !important;
    padding: 0.75rem 1rem !important;
}

/* Close Button */
.swal2-close {
    color: #6b7280 !important;
    transition: all 0.2s ease !important;
}

.swal2-close:hover {
    color: #1f2937 !important;
    transform: rotate(90deg) !important;
}

/* Custom Content Styling */
.swal2-html-container .alert {
    margin: 1rem 0 !important;
}

.swal2-html-container .form-control {
    margin-bottom: 1rem !important;
}

.swal2-html-container .input-group .form-control {
    margin-bottom: 0 !important;
}

.swal2-html-container .form-control.font-monospace {
    font-size: 0.8rem !important;
}

/* Animation Enhancement */
.swal2-show {
    animation: swal2-show 0.3s ease-out !important;
}

.swal2-hide {
    animation: swal2-hide 0.2s ease-in !important;
}

@keyframes swal2-show {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes swal2-hide {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0.9);
        opacity: 0;
    }
}

/* Enhanced Alert Styles */
.custom-alert {
    --success-bg: #ecfdf5;
    --success-border: #10b981;
    --success-text: #065f46;
    
    --error-bg: #fef2f2;
    --error-border: #ef4444;
    --error-text: #991b1b;
    
    --info-bg: #eff6ff;
    --info-border: #3b82f6;
    --info-text: #1e40af;
    
    --warning-bg: #fffbeb;
    --warning-border: #f59e0b;
    --warning-text: #92400e;
    
    position: relative;
    padding: 1.25rem;
    margin: 1rem 0;
    border-radius: 12px;
    border: 1px solid transparent;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    animation: slideInDown 0.2s ease-out;
}

.custom-alert .alert-content {
    display: flex;
    gap: 1rem;
}

.custom-alert .alert-icon {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
}

.custom-alert .alert-icon i {
    font-size: 1rem;
}

.custom-alert .alert-body {
    flex-grow: 1;
    padding-right: 2rem;
}

.custom-alert .alert-heading {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.375rem;
    letter-spacing: -0.01em;
}

.custom-alert .alert-text {
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
    opacity: 0.9;
}

.custom-alert .alert-text ul {
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.custom-alert .alert-text li {
    margin-bottom: 0.25rem;
}

.custom-alert .alert-text li:last-child {
    margin-bottom: 0;
}

.custom-alert .btn-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    padding: 0;
    width: 1.25rem;
    height: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    opacity: 0.5;
    transition: all 0.2s ease;
}

.custom-alert .btn-close:hover {
    opacity: 0.75;
    transform: rotate(90deg);
}

.custom-alert .btn-close i {
    font-size: 0.875rem;
}

/* Success Alert */
.custom-alert.alert-success {
    background-color: var(--success-bg);
    border-color: var(--success-border);
    color: var(--success-text);
}

.custom-alert.alert-success .alert-icon {
    color: var(--success-border);
}

/* Error Alert */
.custom-alert.alert-danger {
    background-color: var(--error-bg);
    border-color: var(--error-border);
    color: var(--error-text);
}

.custom-alert.alert-danger .alert-icon {
    color: var(--error-border);
}

/* Info Alert */
.custom-alert.alert-info {
    background-color: var(--info-bg);
    border-color: var(--info-border);
    color: var(--info-text);
}

.custom-alert.alert-info .alert-icon {
    color: var(--info-border);
}

/* Warning Alert */
.custom-alert.alert-warning {
    background-color: var(--warning-bg);
    border-color: var(--warning-border);
    color: var(--warning-text);
}

.custom-alert.alert-warning .alert-icon {
    color: var(--warning-border);
}

/* Alert Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-0.5rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideOutUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-0.5rem);
    }
}

.custom-alert.show {
    display: block;
}

.custom-alert.hide {
    animation: slideOutUp 0.2s ease-in forwards;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        padding: 1.5rem;
        background: white;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        z-index: 1045;
        border: none !important;
        border-radius: 0 !important;
        margin: 0 !important;
        box-shadow: 0 0 2rem rgba(0,0,0,0.1);
    }

    .navbar-collapse.show {
        transform: translateX(0);
    }

    /* Backdrop overlay */
    .mobile-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.5);
        z-index: 1044;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .navbar-collapse.show + .mobile-backdrop {
        opacity: 1;
        visibility: visible;
    }

    /* Menu content layout */
    .navbar-nav {
        padding: 0;
        margin: 0;
    }

    .nav-item {
        padding: 0;
        margin: 0;
    }

    .nav-link {
        padding: 0.75rem 0;
        font-size: 1rem;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    /* Right-aligned items in mobile */
    .navbar-nav.align-items-center {
        margin-top: 1rem;
        /* padding-top: 2rem; */
        /* border-top: 1px solid rgba(0,0,0,0.08); */
    }

    /* Buttons in mobile menu */
    .navbar-nav .btn {
        width: 100%;
        margin: 0;
        padding: 0.75rem 1rem;
        text-align: left;
    }

    /* Close button */
    .navbar-toggler[aria-expanded="true"] {
        position: fixed;
        top: 1rem;
        right: 1rem;
        z-index: 1046;
        background: white;
        padding: 0.5rem;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        background-image: none;
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
        content: '×';
        font-size: 1.5rem;
        line-height: 1;
        color: #333;
    }
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

.navbar .dropdown-menu {
    border-radius: 0 0 1rem 1rem;
}

.navbar .nav-item.dropdown.position-static {
    position: static;
}

.navbar .nav-item.dropdown.position-static .dropdown-menu {
    left: 0;
    right: 0;
}

.navbar .dropdown-header {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Optional: Animation for the mega menu */
.navbar .dropdown-menu {
    /* display: block; */
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.2s ease-in-out;
}

.navbar .dropdown:hover > .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

/* Mega Menu Styles */
.mega-menu {
    padding: 1.5rem 0;
    border-radius: 0 0 1rem 1rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.featured-tool-card {
    transition: all 0.2s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.featured-tool-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-color);
}

.tool-icon-wrapper {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 8px;
    color: var(--primary-color);
    transition: all 0.2s ease;
}

.tool-item:hover .tool-icon-wrapper {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.tool-item {
    transition: all 0.2s ease;
    border-radius: 8px;
    margin-bottom: 4px;
    color: var(--bs-body-color);
}

.tool-item:hover {
    background: var(--primary-light);
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

.category-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 12px;
}

.tools-category {
    padding: 1.5rem;
    border-radius: 1rem;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.tools-category:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

/* Animation for mega menu */
.mega-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.25s ease-out;
}

.dropdown:hover > .mega-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .mega-menu {
        position: relative !important;
        transform: none !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        box-shadow: none !important;
        background: transparent !important;
        backdrop-filter: none !important;
        display: none; 
    }

    .mega-menu.show {
        display: block;
    }

    /* Adjust tools grid for mobile */
    .tools-category {
        margin-bottom: 1rem;
        padding: 1rem;
        background: var(--bg-gray-50);
    }

    /* Featured tools section */
    .featured-tools {
        margin: 0.5rem 0;
        padding: 1rem !important;
    }

    .featured-tools .row {
        margin-top: 0.25rem;
    }

    /* Tools banner adjustments */
    .tools-banner {
        margin-top: 1rem;
        padding: 1rem !important;
    }

    /* Dropdown toggle behavior */
    .dropdown-toggle::after {
        float: right;
        margin-top: 0.5rem;
        transition: transform 0.2s ease;
    }

    .dropdown-toggle[aria-expanded="true"]::after {
        transform: rotate(180deg);
    }

    .navbar .tools-category.h-100 {
        height: auto !important;
    }
    .navbar .tools-category .tool-list a:last-child {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
}

/* Add these styles for the SVG */
.dashboard-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

/* Animation for the chart line */
.dashboard-svg path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 2s ease forwards;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

/* Hover effect for interactive elements */
.dashboard-svg rect:not(:first-child) {
    transition: fill 0.3s ease;
}

.dashboard-svg rect:not(:first-child):hover {
    fill: #e9ecef;
}

/* Pulse animation for activity indicators */
.dashboard-svg circle {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Ensure the SVG container maintains aspect ratio */
.image-wrapper {
    aspect-ratio: 4/3;
    width: 100%;
}

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

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

.btn-outline-purple:hover:not(:disabled) {
    color: #fff;
    background-color: var(--bs-purple);
    border-color: var(--bs-purple);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 1rem;
    transform: translateY(-50%);
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    color: white;
}