/* MT Chat Color Palette */
:root {
    --primary-100: #f321ff; /* Bright magenta - your existing */
    --primary-200: #ff5b3d; /* Coral red - your existing */
    --primary-300: #3128ff; /* Electric blue - complements the warm/cool balance */

    --accent-100: #ff9500; /* Vibrant orange - warmer complement to your palette */
    --accent-200: #F0A500; /* Darker orange - provides good contrast for text/borders */

    --text-100: #FFFFFF; /* Pure white  */
    --text-200: #e0e0e0; /* Light gray */

    --bg-100: #1a1c1e; /* Slightly darker than your existing for better contrast */
    --bg-200: #2a2d30; /* Medium dark - adjusted to work with new primaries */
    --bg-300: #3a3e42; /* Lighter dark - maintains your existing hierarchy */
}

/* Base HTML/Body Setup with Footer Fix */
html {
    font-size: 14px;
    position: relative;
    height: 100%;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

/* Flexbox layout for sticky footer */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* Make main content grow to fill available space */
main {
    flex: 1;
}

/* Ensure footer sticks to bottom */
footer {
    margin-top: auto;
    flex-shrink: 0;
}

a {
    color: #6c757d;
}

/* Navigation styles */
.navbar-brand {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-100) 0%, var(--primary-200) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.navbar .btn-primary {
    background: var(--primary-200) !important;
    border: none !important;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.navbar .btn-primary:hover {
    background: var(--accent-100) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 149, 0, 0.3);
}

.nav-link:hover {
    font-weight: 700 !important;
    color: inherit !important;
}

/* Ensure the color stays dark for navbar links */
.navbar-light .navbar-nav .nav-link:hover {
    color: #212529 !important;
    font-weight: 700 !important;
}

/* Footer styles */
footer {
    background: var(--bg-100) !important;
}

footer h5, footer h6 {
    color: var(--text-100);
}

footer p {
    color: var(--text-200);
}

footer a {
    text-decoration: none;
    transition: color 0.3s ease;
    color: var(--text-200);
}

footer a:hover {
    color: var(--accent-100) !important;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-200);
    text-align: center;
    line-height: 40px;
    transition: background 0.3s ease, transform 0.3s ease;
    color: var(--text-100);
}

.social-links a:hover {
    background: var(--accent-100);
    color: var(--bg-100) !important;
    transform: translateY(-2px);
}

footer hr {
    border-color: var(--bg-200);
}

.text-white-50 {
    color: var(--text-200) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--bg-100) 0%, var(--bg-200) 15%, var(--primary-200) 90%);
    color: var(--text-100);
    padding: 80px 0;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-100);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-200);
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
}

.feature-highlight i {
    font-size: 1.5rem;
    color: var(--accent-100);
}

.hero-cta {
    margin-bottom: 1rem;
}

.hero-cta .btn-primary {
    background: linear-gradient(135deg, var(--primary-100) 0%, var(--primary-200) 100%);
    border: none;
    color: var(--text-100);
}

.hero-cta .btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-200) 0%, var(--primary-100) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(219, 28, 17, 0.3);
}

.hero-cta .btn-outline-light {
    border-color: var(--text-200);
    color: var(--text-100);
}

.hero-cta .btn-outline-light:hover {
    background-color: var(--accent-100);
    border-color: var(--accent-100);
    color: var(--bg-100);
}

.hero-note {
    color: var(--text-200);
}

/* Demo Browser */
.hero-demo {
    position: relative;
    z-index: 2;
}

.demo-browser {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.browser-header {
    background: #f1f3f4;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
}

.browser-dots span:nth-child(1) {
    background: var(--primary-100);
}

.browser-dots span:nth-child(2) {
    background: var(--accent-100);
}

.browser-dots span:nth-child(3) {
    background: #27ca3f;
}

.browser-url {
    background: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-family: monospace;
    font-size: 0.9rem;
    color: #666;
}

.browser-content {
    height: 400px;
    background: #f8f9fa;
    position: relative;
}

/* Chat Widget Demo */
.chat-widget-demo {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 300px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.chat-header {
    background: #007bff;
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.chat-messages {
    padding: 15px;
    height: 200px;
    overflow-y: auto;
}

.message {
    margin-bottom: 15px;
}

.message-content {
    padding: 10px 15px;
    border-radius: 18px;
    max-width: 80%;
    font-size: 0.9rem;
}

.bot-message .message-content {
    background: #e9ecef;
    color: #333;
}

.user-message {
    text-align: right;
}

.user-message .message-content {
    background: #007bff;
    color: white;
    margin-left: auto;
}

.chat-input {
    padding: 15px;
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: 10px;
}

.chat-input input {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 8px 15px;
    font-size: 0.9rem;
}

.chat-input button {
    background: #007bff;
    color: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--bg-100);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--bg-200);
    max-width: 600px;
    margin: 0 auto;
}

/* Feature Cards */
.feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
    height: 100%;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 197, 153, 0.2);
    border-color: var(--primary-300);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffc599 0%, var(--accent-100) 100%);
    color: var(--bg-100);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.feature-card h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--bg-100);
}

.feature-card p {
    color: var(--bg-200);
    line-height: 1.6;
}

/* How It Works */
.how-it-works-section {
    background-color: #f8f9fa;
}

.step-card {
    position: relative;
    padding: 2rem 1rem;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffc599 0%, var(--accent-100) 100%);
    color: var(--bg-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon {
    margin: 2rem 0 1.5rem;
}

.step-icon i {
    font-size: 3rem;
    color: var(--bg-300);
}

.step-card h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--bg-100);
}

.step-card p {
    color: var(--bg-200);
    line-height: 1.6;
}

/* Code Example */
.code-example {
    margin-top: 3rem;
}

.code-example h5 {
    color: var(--bg-100);
}

.code-block {
    background: var(--bg-100);
    color: var(--text-200);
    padding: 1.5rem;
    border-radius: 8px;
    font-family: 'Monaco', 'Menlo', monospace;
    position: relative;
    display: inline-block;
    margin-top: 1rem;
    border: 1px solid var(--bg-200);
}

.copy-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--bg-200);
    color: var(--text-100);
    border: none;
    border-radius: 4px;
    padding: 5px 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.copy-btn:hover {
    background: var(--bg-300);
}

/* Benefits */
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffc599 0%, var(--accent-100) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-text h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--bg-100);
}

.benefit-text p {
    color: var(--bg-200);
    line-height: 1.6;
    margin: 0;
}

.benefits-content h2 {
    color: var(--bg-100);
    margin-bottom: 1rem;
}

.benefits-content .lead {
    color: var(--bg-200);
}

/* Stats */
.benefits-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
}

.stat-card:hover {
    border-color: var(--primary-300);
    box-shadow: 0 12px 32px rgba(255, 197, 153, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffc599;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--bg-200);
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-200) 0%, var(--bg-100) 60%, var(--bg-200) 100%);
    color: var(--text-100);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-100);
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-200);
}

.cta-section .btn-light {
    background-color: var(--text-100);
    color: var(--bg-100);
    border: none;
    font-weight: 600;
}

.cta-section .btn-light:hover {
    background-color: var(--accent-100);
    color: var(--bg-100);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(240, 165, 0, 0.3);
}

.cta-section .btn-outline-light {
    border-color: var(--text-200);
    color: var(--text-100);
}

.cta-section .btn-outline-light:hover {
    background-color: var(--primary-200);
    border-color: var(--primary-200);
    color: var(--text-100);
}

.cta-note {
    color: var(--text-200);
}

/* Focus States */
.form-check-input:focus {
    border-color: var(--primary-200) !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 91, 61, 0.25) !important;
}

.form-check-input:checked {
    background-color: var(--primary-200) !important;
    border-color: var(--primary-200) !important;
}

.form-check-input:checked:focus {
    border-color: var(--primary-200) !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 91, 61, 0.25) !important;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem var(--primary-200) !important;
}

/* Subscription Cards */
.subscription-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.subscription-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.card-highlight {
    border: 2px solid var(--primary-100);
    transform: scale(1.05);
    position: relative;
    z-index: 1;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-200) !important;
    border-color: var(--primary-200) !important;
    color: var(--text-100) !important;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
}

/* Feature Lists */
.feature-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
    min-height: 200px;
}

.feature-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-list i {
    color: var(--accent-100);
}

/* Pricing */
.price-amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--bg-100);
}

.price-period {
    font-size: 1rem;
    color: var(--bg-200);
}

.select-plan-btn {
    width: 100%;
    padding: 12px;
    background: var(--primary-200) !important;
    color: var(--text-100) !important;
    border: none;
}

.select-plan-btn:hover {
    background: var(--accent-100) !important;
    border-color: var(--accent-100) !important;
    color: var(--text-100) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(219, 28, 17, 0.3);
}

/* Progress Steps */
.progress-step {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.step-item {
    position: relative;
    text-align: center;
    flex: 1;
    max-width: 200px;
}

.step-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px auto;
    font-weight: bold;
    z-index: 2;
    position: relative;
}

.step-title {
    font-size: 0.85rem;
    color: #6c757d;
}

.step-item.active .step-circle {
    /*background: linear-gradient(135deg, var(--primary-100) 0%, var(--primary-200) 100%);*/
    background: linear-gradient(135deg, #ffc599 0%, var(--accent-100) 100%);
    color: #000000;
}

.step-item.active .step-title {
    color: #000000;
    font-weight: bold;
}

.step-item.completed .step-circle {
    background-color: #28a745;
    color: white;
}

.step-line {
    position: absolute;
    top: 17px;
    height: 2px;
    width: 100%;
    background-color: #e9ecef;
    left: 50%;
    z-index: 1;
}

.step-item:first-child .step-line {
    display: none;
}

/* Forms */
.form-floating {
    margin-bottom: 1.2rem;
}

.field-hint {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 5px;
}

/* Cards */
.card {
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Plan Summary */
.plan-summary {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    border-left: 4px solid var(--accent-100);
}

.change-plan-link {
    font-size: 0.85rem;
    color: var(--accent-100);
}

.change-plan-link:hover {
    color: var(--accent-200);
}

/* Order Summary */
.order-summary {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.summary-total {
    font-weight: bold;
    border-top: 1px solid #dee2e6;
    padding-top: 12px;
    margin-top: 12px;
}

/* Payment Cards */
.payment-card {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 10px 15px;
    margin-bottom: 20px;
    transition: all 0.2s ease;
}

.payment-card:hover, .payment-card.active {
    border-color: var(--primary-100);
    background-color: #f8f9fa;
}

.payment-card.active {
    box-shadow: 0 0 0 1px var(--primary-100);
}

.card-logo {
    height: 30px;
    margin-right: 10px;
}

.card-logos {
    margin-bottom: 15px;
}

/* Security Info */
.security-info {
    display: flex;
    align-items: center;
    margin-top: 20px;
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 5px;
}

.security-info i {
    font-size: 1.2rem;
    color: #28a745;
    margin-right: 10px;
}

/* Subscription Details */
.subscription-details {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.detail-item {
    margin-bottom: 10px;
    display: flex;
}

.detail-label {
    font-weight: 600;
    width: 40%;
    color: #6c757d;
}

.detail-value {
    width: 60%;
}

/* Next Steps */
.next-steps {
    margin-top: 30px;
}

.next-step-item {
    padding: 15px;
    margin-bottom: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    display: flex;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    /*background: linear-gradient(135deg, var(--primary-100) 0%, var(--primary-200) 100%);*/
    color: var(--text-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-content {
    flex-grow: 1;
}

.step-content h6 {
    margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-features {
        flex-direction: column;
    }

    .chat-widget-demo {
        position: static;
        width: 100%;
        margin-top: 2rem;
    }

    .benefits-stats {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .hero-cta {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .hero-cta .btn {
        width: 100%;
    }
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-group {
        margin-bottom: 25px;
    }
}


.btn-primary {
    background: var(--primary-200) !important;
    border-color: var(--primary-200) !important;
    color: var(--text-100) !important;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--accent-100) !important;
    border-color: var(--accent-100) !important;
    color: var(--text-100) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 149, 0, 0.3);
}

.btn-primary:focus,
.btn-primary:active {
    background: var(--accent-200) !important;
    border-color: var(--accent-200) !important;
    color: var(--text-100) !important;
}

code {
    color: var(--text-100) !important;
}

.code-block code {
    color: var(--text-100) !important;
}
.section-padding {
    padding: 80px 0;
}

.team-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-100), var(--accent-100));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent-100);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-content {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: relative;
    width: 45%;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 2rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent-100);
    transform: translateX(-50%);
    z-index: 2;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 2rem;
    }

    .timeline-content {
        width: calc(100% - 4rem);
        margin-left: 4rem !important;
        margin-right: 0 !important;
    }

    .timeline-dot {
        left: 2rem;
    }
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.privacy-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
}

.privacy-content {
    line-height: 1.8;
    color: #333;
}

    .privacy-content h2 {
        color: #000000;
        margin-top: 40px;
        margin-bottom: 20px;
        font-size: 1.5rem;
        font-weight: 600;
        padding-bottom: 10px;
        border-bottom: 1px solid #dee2e6;
    }

    .privacy-content h3 {
        color: #495057;
        margin-top: 30px;
        margin-bottom: 15px;
        font-size: 1.25rem;
        font-weight: 600;
    }

    .privacy-content h4 {
        color: #6c757d;
        margin-top: 25px;
        margin-bottom: 12px;
        font-size: 1.1rem;
        font-weight: 600;
    }

    .privacy-content p {
        margin-bottom: 15px;
        text-align: justify;
    }

    .privacy-content ul, .privacy-content ol {
        margin-bottom: 20px;
        padding-left: 30px;
    }

    .privacy-content li {
        margin-bottom: 8px;
    }

.highlight-box {
    background-color: #f8f9fa;
    border-left: 4px solid var(--accent-100);
    padding: 20px;
    margin: 25px 0;
}

.warning-box {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    margin: 25px 0;
}

.contact-info {
    background-color: #e7f3ff;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
}

.data-table {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.effective-date {
    color: #6c757d;
    font-style: italic;
    margin-bottom: 30px;
    text-align: center;
}

.back-link {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.right-item {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid var(--accent-100);
}

.cookie-info {
    background-color: #e8f4f8;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

@media (max-width: 768px) {
    .privacy-container {
        padding: 20px 15px;
    }

    .privacy-content h2 {
        font-size: 1.3rem;
    }

    .back-link {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 20px;
    }

    .rights-grid {
        grid-template-columns: 1fr;
    }
}

.terms-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.terms-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
}

.terms-content {
    line-height: 1.8;
    color: #333;
}

.terms-content h2 {
    color: #000000;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid #dee2e6;
}

.terms-content h3 {
    color: #495057;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.25rem;
    font-weight: 600;
}

.terms-content p {
    margin-bottom: 15px;
    text-align: justify;
}

.terms-content ul, .terms-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.terms-content li {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .terms-container {
        padding: 20px 15px;
    }

    .terms-content h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-features {
        flex-direction: column;
    }

    .chat-widget-demo {
        position: static;
        width: 100%;
        margin-top: 2rem;
    }

    .benefits-stats {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .hero-cta {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .hero-note {
        text-align: center;
        margin-bottom: 1rem;
        padding-bottom: 2rem;
    }
}

.cookie-section {
    margin-bottom: 2rem;
}

.cookie-section h3 {
    color: #000000;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.cookie-table {
    margin-top: 1rem;
}

.cookie-table th {
    background-color: #f8f9fa;
    border-color: #dee2e6;
}

.cookie-controls {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    padding: 1.5rem;
    margin-top: 2rem;
}

.last-updated {
    font-style: italic;
    color: #6c757d;
    border-top: 1px solid #dee2e6;
    padding-top: 1rem;
    margin-top: 2rem;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 34px;
    margin: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #0d6efd;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.cookie-preference-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #dee2e6;
}

.cookie-preference-item:last-child {
    border-bottom: none;
}

.cookie-preference-info {
    flex: 1;
    margin-right: 1rem;
}

.cookie-preference-info h6 {
    margin-bottom: 0.25rem;
    color: #212529;
}

.cookie-preference-info small {
    color: #6c757d;
}

.bg-primary{
    background-color: gray !important;
}



.form-floating > .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
}

.field-hint {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

.password-strength-meter {
    height: 5px;
    width: 100%;
    background-color: #e9ecef;
    margin-top: 5px;
    border-radius: 3px;
    overflow: hidden;
}

.password-strength-meter-fill {
    height: 100%;
    width: 0;
    transition: width 0.3s ease;
    border-radius: 3px;
}

.strength-weak {
    width: 33%;
    background-color: #dc3545;
}

.strength-medium {
    width: 66%;
    background-color: #ffc107;
}

.strength-strong {
    width: 100%;
    background-color: #28a745;
}

.password-suggestions {
    font-size: 0.8rem;
    margin-top: 0.25rem;
    color: #6c757d;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert {
    animation: fadeIn 0.3s ease forwards;
}

.text-muted{
    color: #ffffff !important;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 100%;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    min-height: 120px;
}

    .benefit-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(255, 149, 0, 0.15);
    }

/*.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ffc599 0%, var(--accent-100) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}*/

.benefit-content {
    flex: 1;
    min-width: 0;
}

    .benefit-content h5 {
        font-weight: 600;
        margin-bottom: 0.75rem;
        color: var(--bg-100);
        font-size: 1.1rem;
        line-height: 1.3;
    }

    .benefit-content p {
        color: var(--bg-200);
        line-height: 1.5;
        margin: 0;
        font-size: 0.95rem;
    }

/* Mobile/Tablet Responsiveness */
@media (max-width: 991px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .benefit-item {
        padding: 1.25rem;
        min-height: 110px;
    }

    .benefit-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
}

/* Align contact card with the benefits grid, not the title */
.section-padding .col-lg-8 h2.section-title {
    margin-bottom: 2rem;
}

.section-padding .col-lg-4 .feature-card {
    margin-top: 4.5rem; /* Adjust this value to match the grid's top position */
}

/* Remove center alignment from the row */
.section-padding .row.align-items-center {
    align-items: flex-start !important;
}

.contact-page {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    padding: 60px 0;
}

.contact-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 0 auto;
    max-width: 1000px;
}

.contact-header {
    background: linear-gradient(135deg, var(--bg-100) 0%, var(--bg-200) 15%, var(--primary-200) 90%);
    color: white;
    padding: 60px 40px;
    text-align: center;
}

.contact-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 300;
}

.contact-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-section {
    padding: 50px 40px;
}

.instructions {
    background: #f8f9ff;
    border-left: 4px solid var(--accent-100);
    padding: 25px;
    margin-bottom: 40px;
    border-radius: 8px;
}

.instructions h3 {
    color: var(--accent-200);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.instructions ul {
    margin-left: 20px;
    color: #666;
    font-size: 1rem;
}

.instructions li {
    margin-bottom: 10px;
}

.form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 30px;
    flex: 1;
}

.form-group.full-width {
    flex: 1 1 100%;
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #555;
    font-size: 1rem;
}

.required {
    color: #e74c3c;
}

input, textarea {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #fafbfc;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    background: white;
}

textarea {
    resize: vertical;
    height: 140px;
}

.error {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 8px;
    display: none;
    font-weight: 500;
}

.field-error input,
.field-error textarea {
    border-color: #e74c3c;
    box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.1);
    background: #fef5f5;
}

.submit-btn {
    background: var(--primary-200) !important;
    border-color: var(--primary-200) !important;
    color: var(--text-100) !important;
    padding: 18px 40px;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.submit-btn:hover {
    background: var(--accent-100) !important;
    border-color: var(--accent-100) !important;
    color: var(--text-100) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.submit-btn:focus,
.submit-btn:active {
    background: var(--accent-200) !important;
    border-color: var(--accent-200) !important;
    color: var(--text-100) !important;
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    }

.loading {
    display: none;
    width: 22px;
    height: 22px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 12px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.success-message {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    display: none;
    font-size: 1.1rem;
}

.char-count {
    font-size: 0.9rem;
    color: #666;
    text-align: right;
    margin-top: 8px;
    font-weight: 500;
}

/* Mobile responsiveness */
@@media (max-width: 768px) {
    .contact-page {
        padding: 20px 0;
    }

    .contact-container {
        margin: 0 15px;
        border-radius: 8px;
    }

    .contact-header {
        padding: 40px 25px;
    }

    .contact-header h1 {
        font-size: 2.2rem;
    }

    .contact-form-section {
        padding: 40px 25px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .instructions {
        padding: 20px;
    }
}

@@media (max-width: 576px) {
    .contact-header h1 {
        font-size: 1.8rem;
    }

    .contact-header p {
        font-size: 1rem;
    }

    .submit-btn {
        padding: 16px 30px;
        font-size: 1.1rem;
    }
}

.value-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border-left: 4px solid var(--primary-color);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffc599 0%, var(--accent-100) 100%);
    color: var(--bg-100);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.job-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    border: 1px solid #e5e7eb;
}

.job-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px -5px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.job-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.job-type {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 20px;
}

.job-type.full-time {
    background: #e0f2fe;
    color: #0277bd;
}

.job-type.remote {
    background: #e8f5e8;
    color: #2e7d32;
}

.job-type.internship {
    background: #fff3e0;
    color: #f57c00;
}

.job-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.job-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.job-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.skill-tag {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

/*.benefit-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}*/

.stats-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}


.application-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

@media (max-width: 768px) {
    .job-header {
        flex-direction: column;
        gap: 1rem;
    }

    .job-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

.form-check-input[type="checkbox"] {
    /*all: unset !important;*/
    width: 16px !important;
    height: 16px !important;
    border: 1px solid #ccc !important;
    border-radius: 3px !important;
    appearance: checkbox !important;
    -webkit-appearance: checkbox !important;
    -moz-appearance: checkbox !important;
}

.form-check {
    display: flex !important;
    align-items: flex-start !important;
    gap: 0.5rem !important;
}

.form-check-label {
    flex: 1 !important;
    line-height: 1.5 !important;
    cursor: pointer !important;
}
.text-primary{
    color: var(--primary-200) !important;
}
