/* Global Variables */
:root {
    --primary-color: #5ac8fa; /* Light Teal Blue */
    --secondary-color: #007aff; /* Deep Sky Blue */
    --text-color: #c1e1ec;
    --overlay-color: rgba(26, 26, 46, 0.6); /* Overlay for readability */
    --accent-color: #001f3f; /* Dark Accent Color */
}


/* General Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: var(--accent-color);
    color: var(--text-color);
    overflow-x: hidden;
}

/* Hero Header with Enhanced Background Image */
/* Hero Header with Enhanced Background Image */
.hero-header {
    position: fixed; /* Pin the header to the top */
    top: 0;
    left: 0;
    width: 100%; /* Full width */
    height: 8vh;
    background: #001f3f; /* Clean black background for clarity */
    z-index: 1200; /* Ensures it stays above other content */
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* padding: 10px 20px; */
    padding-left: 77px;
    /*box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);*/
    border-bottom: 1px solid color(srgb 0.71 0.83 0.88 / 0.15);
}

.hero-header .header-text {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    color: #fff;
    margin-left: 0;
    gap: 14px;
}

.hero-header .header-text h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.4rem;
    color: #00d4ff; /* Tron-inspired neon blue */
    font-weight: normal;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 1.1px;
    text-align: left;
    text-shadow: 0 0 20px rgba(0, 170, 255, 0.8);
}

.hero-header .header-text p {
    font-size: 1.4rem;
    color: #c1e1ec; /* Light cyan text */
    margin: 5px 0 0;
    font-weight: lighter;
    text-align: left;
    margin-top: 15px;
}

/* Buttons Container */
.activate-ai-container {
    display: flex;
    gap: 37px; /* Space between buttons */
    margin-left: auto;
    padding-right: 61px;
    font-family: 'Montserrat', sans-serif;
}

/* Button Styling */
.activate-ai {
    padding: 17px 12px;
    font-size: 1.1rem;
    text-transform: uppercase;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    /* border-radius: 4px; */
    transition: all 0.3s ease;
    display: inline-block;
    /* background: #0a0e14; */
    color: #c1e1ec;
    /* border: 1px solid #000; */
    font-family: 'Montserrat', sans-serif;
}

/*.activate-ai:hover {
    background: #00d4ff; 
    color: #fff; 
    border: 1px solid #00d4ff;
    transform: scale(1.05); 
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.8); /* Tron glow */
}*/

/* Login Button - Subtle difference */
#loginButton {
    background: transparent;
    color: #c1e1ec;
    /* border: 1px solid #fff; */
}

/*#loginButton:hover {
    background: #6fc3df; 
    color: #000;
    border: 1px solid #6fc3df;
    transform: scale(1.05);
    box-shadow: 0 0 8px rgba(111, 195, 223, 0.7);
}*/


/* Hero Content */
.hero-content {
    text-align: center;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 20px 10px 20px;
}

.hero-content h1 {
    font-size: 30px;
    color: #00d4ff;
    font-weight: 700;
    margin-bottom: 0px;
    /* text-shadow: 0 0 10px rgba(0, 170, 255, 0.7); */
    padding-left: 50px;
    padding-right: 50px;
}

.hero-content p {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 170, 255, 0.7);
}

/* Pricing Section */
.price-deal {
    background: rgba(0, 170, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    display: inline-block;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 170, 255, 0.2);
    margin: 20px auto;
}

.price-deal p {
    font-size: 16px;
    color: var(--text-color);
}

.price-deal h2 {
    font-size: 28px;
    color: var(--text-color);
    font-weight: 700;
}

.price-deal .additional-cost {
    font-size: 16px;
    color: #cccccc;
    font-weight: 300;
    display: block;
    margin-top: 5px;
}

.best-deal {
    font-size: 14px;
    color: #cccccc;
    font-style: italic;
}

/* CTA Button - Configure Your AI */
.cta-buttons {
    text-align: center;
    margin-top: 15px;
}

.button-primary {
    background: var(--primary-color);
    padding: 10px 20px;
    border-radius: 25px;
    color: #ffffff;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 170, 255, 0.4);
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.button-primary:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(51, 153, 255, 0.6);
}

/* Configuration and Contact Sections */
.configuration {
    background: var(--accent-color);
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid var(--overlay-color);
    max-width: 800px;
    margin: 0 auto;
}

.configuration h2 {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.configuration p {
    font-size: 16px;
    color: #bbbbbb;
    margin-bottom: 20px;
    line-height: 1.5;
}


/* Contact Section with Enhanced Styles */
.contact {
    background: #0a0e14;
    padding: 50px 20px;
    text-align: center;
    /* max-width: 800px; */
    margin: 0 auto;
    /* border-radius: 12px; */
    box-shadow: 0 0 25px rgba(0, 170, 255, 0.5);
}

.tron-contact-title {
    font-size: 28px;
    color: #00d4ff;
    font-weight: 700;
    margin-bottom: 20px;
    /* text-shadow: 0 0 15px rgba(0, 212, 255, 0.8); */
    letter-spacing: 1.5px;
    text-shadow: 0 0 10px rgba(0, 170, 255, 0.7);
    font-family: 'Montserrat', sans-serif;
}

.tron-contact-email {
    font-size: 20px;
    color: #bbbbbb;
    margin-bottom: 30px;
    line-height: 1.5;
    font-family: 'Montserrat', sans-serif;
}

.tron-contact-email a.tron-email-link {
    color: #c1e1ec;
    text-decoration: none;
    font-weight: 100;
    font-size: 18px;
    letter-spacing: 1.2px;
    /* text-shadow: 0 0 15px rgba(0, 255, 200, 0.8); */
    transition: color 0.3s ease, text-shadow 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.tron-contact-email a.tron-email-link:hover {
    color: #00a3ff;
    text-shadow: 0 0 25px rgba(0, 170, 255, 0.9);
}


/* Form Styling */
form {
    display: flex;
    flex-direction: column;
    gap: 2px;
    max-width: 500px;
    margin: 0 auto;
}

input, textarea {
    padding: 10px;
    border-radius: 5px;
    background: #1e1e2e;
    color: var(--text-color);
    border: 1px solid var(--overlay-color);
    outline: none;
    transition: background 0.3s ease;
}

input:focus, textarea:focus {
    background: #33334d;
    outline: 1px solid var(--secondary-color);
}

.submit-button {
    padding: 12px 25px;
    border-radius: 25px;
    background: var(--secondary-color);
    color: var(--text-color);
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(51, 153, 255, 0.5);
}

.submit-button:hover {
    background: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 170, 255, 0.6);
}

/* Style for Example Button */
.example-button {
    padding: 12px 25px;
    border-radius: 25px;
    background: var(--primary-color);
    color: var(--text-color);
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 170, 255, 0.5);
    margin-right: 10px; /* Space between buttons */
}

.example-button:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 122, 255, 0.6);
}


/* Chatbot Widget Styles */
.chatbot-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.robot-icon {
    width: 50px;
    height: 50px;
    border: 2px solid #00c1eb;
    background: url('Add_assistant.webp') no-repeat center center / cover;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 170, 255, 0.3);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.robot-icon:hover {
    transform: scale(1.1);
    box-shadow: 3px 3px 12px 0px rgba(0, 170, 255, 0.5);
}

/* Chat Window Styling */

/* Futuristic Chat Window Styling */
.chat-window {
    position: fixed;
    bottom: 77px;
    right: 28px;
    width: 344px;
    min-height: 500px;
    max-height: 450px;
    border-radius: 1px;
    background: #1e1e2e;
    display: flex;
    flex-direction: column;
    border: 1px solid #003354;
    box-shadow: 0 0 30px rgba(0, 170, 255, 0.7);
    animation: slideUp 0.5s ease forwards;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.chat-header {
    background: linear-gradient(135deg, #002747, #00d4ff);
    padding: 10px;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    border-top-left-radius: 1px;
    border-top-right-radius: 1px;
}

.chat-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 10px;
    background: #19192e;
    max-height: 407px;
    min-height: 407px;
    box-shadow: inset 0 0 7px rgba(0, 170, 255, 0.5);
}

.chat-body .message-chip,
.chat-body .message-user {
    padding: 12px 18px;
    border-radius: 15px;
    font-size: 14px;
    margin-bottom: 10px;
    max-width: 98%;
    color: white;
    font-weight: 300;
    box-shadow: 0 0 10px rgba(0, 170, 255, 0.6);
    word-break: break-word;
    position: relative;
    background-clip: padding-box;
}

.message-chip {
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.6) 0%, rgba(0, 255, 255, 0.4) 100%);
    align-self: flex-start;
    text-align: left;
    border-image: linear-gradient(135deg, #007aff, #00ffdd) 1;
    margin-left: 10px;
    margin-right: 30px;
}

.message-user {
    background: linear-gradient(135deg, rgba(90, 200, 250, 0.6) 0%, rgba(59, 145, 213, 0.4) 100%);
    align-self: flex-end;
    text-align: right;
    border-image: linear-gradient(135deg, #5ac8fa, #3b91d5) 1;
    margin-left: 30px;
    margin-right: 10px;
}

.message-chip::after,
.message-user::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 8px solid transparent;
    transform: translateY(-50%);
}

.message-chip::after{
    left: -16px;
    border-right-color: rgb(16 85 171);
}

.message-user::after {
    right: -16px;
    border-left-color: rgb(36 75 112);
}




.tron-chatbot-input {
    display: flex;
    gap: 10px;
    align-items: center;
    position: relative;
    
}

.tron-chatbot-input input {
    flex: 1;
    padding: 12px 40px 12px 12px;
    border-radius: 8px;
    border: none;
    background: #1e1e2e;
    color: #ffffff;
    box-shadow: inset 0 0 10px rgba(0, 170, 255, 0.5);
    outline: none;
    /* border-top-left-radius: 0px; */
    /* border-top-right-radius: 0px; */
    font-size: 16px;
    transition: all 0.3s ease;
    margin: 6px 5px 7px 5px;
}

.tron-chatbot-input input:focus {
    background: #33334d;
    box-shadow: inset 0 0 15px rgba(0, 170, 255, 0.6);
}

.tron-chatbot-input button {
    position: absolute;
    right: 11px;
    top: 12px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tron-chatbot-input button:hover {
    background: #005fbd;
    border-color: #005fbd;
    box-shadow: 0 0 20px rgba(0, 122, 255, 0.7);
}









/* Chat Footer Styling */
.chat-footer {
    display: flex;
    padding: 10px;
    background: #33334d;
    border-top: 1px solid #444;
}

.chat-footer input {
    flex: 1;
    padding: 8px;
    border: none;
    border-radius: 5px;
    background: #444;
    color: #ffffff;
    outline: none;
    margin-right: 10px;
}

.chat-footer button {
    padding: 8px 15px;
    background: #007aff;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.chat-footer button:hover {
    background: #005bb5;
}

/* Footer */
footer {
    background: var(--accent-color);
    color: var(--text-color);
    text-align: center;
    padding: 20px;
    border-top: 1px solid var(--overlay-color);
}

.footer-container p {
    font-size: 14px;
    color: #777;
}

/* Registration Section Modal */
.registration-section {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.register-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.register-content {
    background: var(--accent-color);
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    max-height: 90%; /* Ensure content does not overflow the screen */
    overflow-y: auto; /* Enable vertical scrolling for long forms */
    box-shadow: 0 0 15px rgba(0, 170, 255, 0.3);
    color: var(--text-color);
    position: relative;
    text-align: center;
}

.register-content h2 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.register-content p {
    font-size: 16px;
    color: #bbbbbb;
    margin-bottom: 20px;
}

.register-content form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.register-content input {
    padding: 10px;
    border-radius: 5px;
    background: #1e1e2e;
    color: var(--text-color);
    border: 1px solid var(--overlay-color);
    outline: none;
    transition: background 0.3s ease;
}

.register-content input:focus {
    background: #33334d;
    outline: 1px solid var(--secondary-color);
}


/* Confirmation Code Section Modal */
.confirmation-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.confirmation-content {
    background: var(--accent-color);
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 0 15px rgba(0, 170, 255, 0.3);
    color: var(--text-color);
    text-align: center;
}

.confirmation-content h2 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.confirmation-content input {
    padding: 10px;
    border-radius: 5px;
    background: #1e1e2e;
    color: var(--text-color);
    border: 1px solid var(--overlay-color);
    outline: none;
    transition: background 0.3s ease;
}

.confirmation-content input:focus {
    background: #33334d;
    outline: 1px solid var(--secondary-color);
}






/* Close Button */
.close-button {
    background: none;
    color: #ffffff;
    border: none;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
}


/* Tron-Inspired Chat Overlay */
.chat-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.chat-overlay-content {
    background: var(--accent-color);
    color: var(--text-color);
    border-radius: 8px;
    max-width: 600px;
    width: 85%;
    padding-top: 30px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
    position: relative;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 170, 255, 0.5);
    animation: pulse 1.5s infinite alternate;
}

@keyframes pulse {
    from { box-shadow: 0 0 10px rgba(0, 170, 255, 0.5); }
    to { box-shadow: 0 0 20px rgba(0, 170, 255, 0.7); }
}

.chat-messages {
    max-height: 300px;
    overflow-y: auto;
    background: #1e1e2e;
    border: 1px solid var(--overlay-color);
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.chat-input {
    display: flex;
    gap: 10px;
}

.chat-input input {
    flex: 1;
    padding: 10px;
    border-radius: 5px;
    border: none;
    background: #33334d;
    color: var(--text-color);
}

/* Fix input box issue in mobile by preventing the entire overlay from moving */
.tron-chat-input input:focus {
    outline: none;
}

.chat-input button {
    padding: 10px 20px;
    background: var(--primary-color);
    color: #0a0a0a;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.chat-input button:hover {
    background: var(--secondary-color);
}

/* Close Button */
.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    color: var(--text-color);
    background: none;
    border: none;
    cursor: pointer;
}

.activate-ai-overlay {
    position: fixed;
    top: 15px;
    right: 20px;
    padding: 10px 20px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.activate-ai-overlay:hover {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: scale(1.05);
    box-shadow: 0 0 10px var(--primary-color);
}

/* Tron-Inspired Login Overlay */
.login-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1500;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.5s ease-in-out;
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
}

.login-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.login-overlay h2 {
    margin-bottom: 27px;
}

.input-group {
    margin-bottom: 20px;
}

.login-form{
    gap: 0px;
}

/* Tron-Inspired Content Box */
.login-overlay-content {
    background: #1b1b2fab;
    padding: 30px;
    border-radius: 1px;
    max-width: 450px;
    width: 90%;
    color: #00d4ff;
    position: relative;
    text-align: left;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
    animation: pulseGlow 1.5s infinite alternate;
}

/* Tron-Inspired Title */
.tron-login-title {
    font-size: 28px;
    color: #00d4ff; /* Neon blue color */
    font-weight: bold;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

/* Tron-Inspired Labels */
.tron-label {
    font-size: 16px;
    color: #00d4ff;
    text-align: left;
    display: block;
    margin-bottom: 5px;
}

/* Tron-Inspired Inputs */
.tron-input {
    padding: 17px 15px;
    border-radius: 2px;
    background: #1e1e2e;
    color: #ffffff;
    border: none;
    outline: none;
    font-size: 14px;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: inset 0 0 10px rgba(0, 170, 255, 0.6);
    font-family: 'Montserrat', sans-serif;
}

.tron-input:focus {
    background: #33334d;
    box-shadow: 0 0 15px #00d4ff, 0 0 25px #00d4ff;
}

/* Tron-Inspired Submit Button */
.tron-submit-button {
    padding: 12px 30px;
    border-radius: 8px;
    background: linear-gradient(135deg, #007aff, #00d4ff);
    color: #0a0a0a;
    font-weight: bold;
    border: none;
    cursor: pointer;
    margin-bottom: 20px;
    font-size: 16px;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 170, 255, 0.6);
}

.tron-submit-button:hover {
    background: linear-gradient(135deg, #005bb5, #00a3ff);
    box-shadow: 0 0 30px rgba(0, 170, 255, 0.8);
    transform: scale(1.05);
}

/* Tron-Inspired Close Button */
.tron-close-button {
    position: absolute;
    background: none;
    color: #00d4ff;
    border: none;
    padding: 8px 12px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    top: 5px;
    right: 5px;
    transition: transform 0.2s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.tron-close-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 170, 255, 0.7);
    color: #007aff;
}

/* Tron-Inspired Response Area */
.tron-response-area {
    margin-top: 15px;
    font-size: 14px;
    font-family: 'Orbitron', sans-serif; /* Futuristic Tron-like font */
    padding: 10px;
    border-radius: 8px;
    width: 100%;
    letter-spacing: 1px;
    justify-content: center;
}

/* Tron-Inspired Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulseGlow {
    from { box-shadow: 0 0 20px rgba(0, 170, 255, 0.5); }
    to { box-shadow: 0 0 35px rgba(0, 170, 255, 0.8); }
}

/* Carousel Container */
.pricing-carousel {
    display: flex;
    justify-content: center;
    overflow-x: auto;
    overflow-y: hidden; /* Prevent any vertical scroll */
    margin: 0px 0;
    width: 100%;
    max-width: 700px;
    padding: 15px 0;
    margin-left: 30px;
    scroll-snap-type: x mandatory;
}



/* Inner Pricing Options */
.pricing-options {
    display: flex;
    gap: 15px;
    transition: transform 0.5s ease-in-out;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    width: 100%;
    max-width: 700px;
    justify-content: center;
    padding-top: 0px;
    padding-bottom: 0px;
}

/* Individual Price Box */
.price-deal {
    background: rgba(0, 170, 255, 0.1);
    padding: 20px 15px; /* Adjust padding for better spacing */
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 170, 255, 0.2);
    width: 180px;
    min-width: 180px;
    height: auto; /* Set height to auto to allow full content display */
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    scroll-snap-align: center;
    position: relative;
}

/* Text in Price Box */
.price-deal p,
.price-deal h2,
.price-deal .additional-cost,
.price-deal .best-deal {
    margin: 0;
}

.price-deal p {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 5px;
}

.price-deal h2 {
    font-size: 24px;
    color: var(--text-color);
    font-weight: 700;
    margin: 0;
}

.price-deal .additional-cost {
    font-size: 14px;
    color: #cccccc;
    font-style: italic;
    margin-top: 5px;
}

.price-deal .best-deal {
    font-size: 12px;
    color: #ffda77;
    margin-top: 5px;
}

/* Highlighted (Selected) Plan */
.selected {
    border: 2px solid #007aff;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.5);
    transform: scale(1.05);
    z-index: 1;
}

/* Mobile Adjustments */


/* Tron-Inspired Styling for the response areas */
.response-area {
    margin-top: 15px;
    font-size: 14px;
    font-family: 'Orbitron', sans-serif; /* Futuristic Tron-like font */
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    width: 100%;
    justify-content: center;
    letter-spacing: 1px; /* Adds a sleek letter spacing for a futuristic feel */
    transition: all 0.3s ease-in-out; /* Smooth transition for hover effects */
}

/* Tron-Inspired Success Message */
.success-message {
    background-color: rgba(0, 170, 255, 0.2); /* Neon blue glow effect */
    color: #00ffff; /* Bright cyan text color for a Tron-like effect */
    border: 1px solid #00ffff;
    padding: 15px;
    border-radius: 8px;
    text-shadow: 0 0 8px #00ffff; /* Glowing text */
    box-shadow: 0 0 15px rgba(0, 170, 255, 0.6); /* Neon glow around the box */
}

/* Tron-Inspired Error Message */
.error-message {
    background-color: rgba(255, 0, 0, 0.2); /* Light red with neon glow */
    color: #ff4d4d; /* Bright neon red */
    border: 1px solid #ff4d4d;
    padding: 15px;
    border-radius: 8px;
    text-shadow: 0 0 8px #ff4d4d; /* Glowing text for error */
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.6); /* Neon red glow around the box */
}

/* Hover effect for both messages */
.success-message:hover, .error-message:hover {
    box-shadow: 0 0 25px rgba(0, 255, 255, 1), 0 0 35px rgba(0, 255, 255, 0.6); /* Intensifies glow on hover */
    transform: scale(1.05); /* Slight scaling on hover for futuristic feel */
}

/* Customer Journey Section Modal */
.customer-journey-section {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9); /* Dark overlay */
    align-items: center;
    justify-content: center;
    z-index: 1002;
    animation: fadeIn 0.5s ease-in-out;
}

/* Animation for the Overlay */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Close Button for the Overlay */
.close-overlay {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 50%;
    padding: 10px;
    transition: all 0.3s ease;
    z-index: 1002;
}

.close-overlay:hover {
    background: var(--primary-color);
    color: var(--accent-color);
    box-shadow: 0 0 10px var(--primary-color);
    transform: scale(1.1);
}

/* Journey Overlay */
.journey-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

/* Journey Container */
.journey-container {
    display: flex;
    max-width: 900px;
    background: var(--accent-color);
    border-radius: 8px;
    box-shadow: 0 0 25px var(--primary-color);
    overflow: hidden;
    width: 80%;
    position: relative;
}

/* Left-Side Steps Navigation */
.journey-steps {
    width: 200px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    border-right: 2px solid var(--primary-color);
}

.journey-steps ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.journey-steps li {
    padding: 15px 0;
    font-size: 18px;
    color: #bbbbbb;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.journey-steps li.active,
.journey-steps li:hover {
    color: var(--primary-color);
    font-weight: bold;
    text-shadow: 0 0 10px var(--primary-color);
}

/* Journey Forms */
.journey-forms {
    flex-grow: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Form Steps Visibility */
.journey-form-step {
    display: none;
}

.journey-form-step.active {
    display: block;
}

/* Form Inputs */
input,
.fake-input,
textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background-color: #222;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    color: var(--text-color);
    font-size: 16px;
    transition: all 0.3s ease;
    outline: none;
}

input:focus,
textarea:focus,
.fake-input:focus {
    background-color: #333;
    box-shadow: 0 0 10px var(--primary-color);
}

/* Form Labels */
label {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 4px;
    font-family: 'Montserrat', sans-serif;
    display: block;
}

/* Tron-Inspired Submit Buttons */
.journey-submit-button {
    width: 100%;
    padding: 15px;
    background-color: var(--secondary-color);
    color: var(--text-color);
    font-weight: bold;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px var(--primary-color);
}

.journey-submit-button:hover {
    background-color: var(--primary-color);
    box-shadow: 0 0 20px var(--secondary-color);
}

/* Success Message */
.success-message {
    background-color: rgba(0, 170, 255, 0.2);
    color: var(--primary-color);
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 170, 255, 0.4);
    animation: glowSuccess 1.5s infinite alternate;
}

@keyframes glowSuccess {
    from {
        box-shadow: 0 0 10px var(--primary-color);
    }
    to {
        box-shadow: 0 0 20px var(--primary-color);
    }
}


/* Improved Title Styling */
.tron-assistant-title {
    font-size: 28px;
    color: #00d4ff; /* Neon blue color */
    font-weight: bold;
    margin-bottom: 20px;
   
}


/* Tron-Inspired Chat Prompts Container */
.tron-chat-prompts {
    display: flex;
    width: 100%;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
    padding: 10px 0;
}

/* Tron-Inspired Chat Prompt Button */
.tron-chat-prompt-button {
    background: #101018;
    color: #5ac8fa;
    padding: 5px 10px;
    border: 1px solid #007aff;
    border-radius: 5px;
    flex:1 1 40%;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 170, 255, 0.5);
    transition: all 0.3s ease;
    margin:5px;
}

.tron-chat-prompt-button:hover {
    background: #33334d;
    color: #ffffff;
    box-shadow: 0 0 25px rgba(0, 170, 255, 0.7);
    transform: scale(1.05);
}

.tron-chat-prompt-button:focus {
    outline: none;
    box-shadow: 0 0 20px rgba(0, 170, 255, 0.7);
}


/* Responsive Adjustments */
@media (max-width: 600px) {
    .tron-chat-prompts {
        justify-content: space-between;
    }
    .tron-chat-prompt-button {
        flex: 1 1 40%;
        text-align: center;
    }
    .chip-tron-configuration {
        /* background: linear-gradient(135deg, #0A0A0A 0%, #1a1a2e 100%); */
        padding: 60px 14px;
        text-align: center;
        border-top: 1px solid rgba(26, 26, 46, 0.8);
        width: 355px;
        margin: 0 auto;
        box-shadow: 0 0 30px rgba(0, 170, 255, 0.3);
        animation: chip-tron-pulse 1.5s infinite alternate;
        /* border-radius: 12px; */
        margin-bottom: 21px;
    
    }
}

/* Tron-Inspired Chat Overlay */
.tron-chat-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    z-index: 999;
    animation: fadeIn 0.5s ease-in-out;
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
}

.tron-chat-overlay-content {
    background: #1b1b2f;
    color: #ffffff;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 90%;
    padding: 35px 20px 20px 20px;
    position: relative;
    text-align: center;
    box-shadow: 0 0 25px rgba(0, 170, 255, 0.8);
    animation: tron-pulse 1.5s infinite alternate;
}

@keyframes tron-pulse {
    from { box-shadow: 0 0 20px rgba(0, 170, 255, 0.5); }
    to { box-shadow: 0 0 35px rgba(0, 170, 255, 0.8); }
}

.tron-chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.tron-chat-header h2 {
    font-size: 24px;
    color: #5ac8fa;
    flex-grow: 1;
    text-align: center;
}

/* Tron-Inspired Messages */
.tron-chat-messages {
    max-height: 430px;
    overflow-y: auto;
    background: #101018;
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
    box-shadow: inset 0 0 20px rgba(0, 170, 255, 0.6);
}

.tron-message-chip,
.tron-message-user {
    padding: 12px 18px;
    border-radius: 15px;
    font-size: 14px;
    margin-bottom: 10px;
    max-width: 98%;
    color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 170, 255, 0.6);
    word-break: break-word;
    position: relative;
    background-clip: padding-box;
    
}

.tron-message-chip {
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.6) 0%, rgba(0, 255, 255, 0.4) 100%);
    align-self: flex-start;
    text-align: left;
    border-image: linear-gradient(135deg, #007aff, #00ffdd) 1;
    margin-left: 10px;
    margin-right: 30px;
}

.tron-message-chip ol, 
.tron-message-chip ul{
    padding-left: 25px;
}

.tron-message-user {
    background: linear-gradient(135deg, rgba(90, 200, 250, 0.6) 0%, rgba(59, 145, 213, 0.4) 100%);
    align-self: flex-end;
    text-align: right;
    border-image: linear-gradient(135deg, #5ac8fa, #3b91d5) 1;
    margin-left: 30px;
    margin-right: 10px;
}

.tron-message-chip::after,
.tron-message-user::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 8px solid transparent;
    transform: translateY(-50%);
}

.tron-message-chip::after {
    left: -16px;
    border-right-color: rgb(16 85 171);
}

.tron-message-user::after {
    right: -16px;
    border-left-color: rgb(36 75 112);
}

.tron-chat-input {
    display: flex;
    gap: 10px;
    align-items: center;
    position: relative;
    
}

.tron-chat-input input {
    flex: 1;
    padding: 12px 40px 12px 12px;
    border-radius: 8px;
    border: none;
    background: #1e1e2e;
    color: #ffffff;
    box-shadow: inset 0 0 10px rgba(0, 170, 255, 0.5);
    outline: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.tron-chat-input input:focus {
    background: #33334d;
    box-shadow: inset 0 0 15px rgba(0, 170, 255, 0.6);
}

.tron-chat-input button {
    position: absolute;
    right: 11px;
    top: -11px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tron-chat-input button:hover {
    background: #005fbd;
    border-color: #005fbd;
    box-shadow: 0 0 20px rgba(0, 122, 255, 0.7);
}


.activate-ai-button {
    position: absolute;
    padding: 6px 12px;
    top: -35px;
    right: 0px;
    border: 2px solid #00d4ff;
    color: #00d4ff;
    font-weight: bold;
    border-radius: 12px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    box-shadow: 0 0 8px rgba(0, 170, 255, 0.5);
}

.activate-ai-button:hover {
    color: #007aff;
    border-color: #007aff;
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(0, 170, 255, 0.8);
}

/* Tron-Inspired Close Button */
.tron-close-button {
    position: absolute;
    background: none;
    color: #ffffff;
    border: none;
    padding: 8px 12px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    top: -3px;
    right: -4px;
    /*box-shadow: 0 0 10px rgba(0, 170, 255, 0.5);*/
    transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.tron-close-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 170, 255, 0.7);
    color: #007aff;
}


.tron-send-button {
    position: absolute;
    right: 5px;
    bottom: 5px;
    display: none; /* Initially hidden */
    background: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    transition: transform 0.2s ease-in-out;
}

.tron-send-button svg {
    width: 24px;
    height: 24px;
    fill: #00d4ff;
    transform: rotate(-45deg); /* Rotate the icon to point upwards like a rocket */
    filter: drop-shadow(0 0 5px #00d4ff); /* Initial glow */
    /* transition: transform 0.2s ease-in-out, filter 0.2s ease-in-out; */
    /* animation: pulseGlow 1.5s infinite alternate; */ /* Constant pulsing effect */
}

.tron-send-button svg:hover {
    transform: scale(1.2);
    box-shadow: 0 0 15px #00d4ff, 0 0 30px #00d4ff, 0 0 45px #00d4ff;
}

.tron-send-button:active svg {
    transform: scale(1);
    box-shadow: 0 0 8px #00d4ff;
}

.tron-send-button-glow {
    box-shadow: 0 0 10px #00d4ff, 0 0 20px #00d4ff, 0 0 30px #00d4ff;
}

#tronUserMessage:focus + .tron-send-button {
    display: flex; /* Show the button when focused */
    align-items: center;
    justify-content: center;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 8px #00d4ff, 0 0 16px #00d4ff, 0 0 24px #00d4ff;
    }
    50% {
        box-shadow: 0 0 12px #00d4ff, 0 0 20px #00d4ff, 0 0 28px #00d4ff;
    }
    100% {
        box-shadow: 0 0 8px #00d4ff, 0 0 16px #00d4ff, 0 0 24px #00d4ff;
    }
}

.tron-send-button:hover svg {
    transform: rotate(-45deg) scale(1.2); /* Slightly enlarge on hover while maintaining the rotation */
}

.tron-send-button:active svg {
    transform: rotate(-45deg) scale(1);
}

/* Configuration Section */
.chip-tron-configuration {
    background: #2c4a656b;
    padding: 11px 20px;
    text-align: center;
    border-top: 1px solid rgb(26 26 46 / 16%);
    max-width: 641px;
    margin: 0 auto;
    box-shadow: 0 0 30px rgba(0, 170, 255, 0.3);
    animation: chip-tron-pulse 1.5s infinite alternate;
    border-radius: 14px; 
    margin-bottom: 21px;
    margin-top: -15px;
}

/* Enhanced Inline-style button for a more dynamic feel */
.chip-tron-inline-button {
    background: linear-gradient(90deg, #00d4ff, #007aff);
    color: #001f29;
    border: none;
    padding: 9px 20px;
    margin-bottom: 19px;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 17px;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s, color 0.3s, box-shadow 0.3s;
    display: inline;
    vertical-align: baseline;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.6), 0 0 5px rgba(0, 122, 255, 0.8);
   /* animation: pulseGlow 1.8s infinite; /* Enhanced pulse animation */
}
/* Hover effect for a powerful glow and scaling effect */
.chip-tron-inline-button:hover {
    background: linear-gradient(90deg, #007aff, #00d4ff);
    color: #001f29;
    transform: scale(1.05); /* Slightly enlarges on hover */
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.9), 0 0 10px rgba(0, 122, 255, 0.9);
}


/* Enhanced pulse glow animation for stronger effect */
@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(0, 212, 255, 0.6), 0 0 5px rgba(0, 122, 255, 0.8);
    }
    50% {
        box-shadow: 0 0 25px rgba(0, 212, 255, 0.9), 0 0 10px rgba(0, 122, 255, 0.9);
    }
}

.chip-tron-config-description strong {
    color: #01cdff; /* Change to your preferred color */
    
}


.chip-tron-assistant-title {
    font-size: 27px;
    color: #00d4ff;
    font-weight: bold;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    margin-top: 12px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(0, 170, 255, 0.7);
}

.chip-tron-config-description {
    font-size: 14px;
    padding-left: 60px;
    padding-right: 60px;
    color: #c1e1ec;
    margin-bottom: 20px;
    line-height: 1.5;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 8px rgba(0, 170, 255, 0.4);
}

.chip-tron-config-form {
    display: flex;
    flex-direction: column;
    gap: 7px;
    max-width: 500px;
    margin: 0 auto;
}

.chip-tron-label {
    font-size: 16px;
    color: #00d4ff;
    margin-bottom: 0px;
    display: block;
    text-align: left;
    font-weight: bold;
    letter-spacing: 1px;
}

.chip-tron-input {
    padding: 12px;
    border-radius: 8px;
    background: #1e1e2e;
    color: #ffffff;
    border: none;
    outline: none;
    font-size: 16px;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: inset 0 0 10px rgba(0, 170, 255, 0.6);
}

.chip-tron-input:focus {
    background: #33334d;
    box-shadow: 0 0 15px #00d4ff, 0 0 25px #00d4ff;
}

.chip-tron-button-group {
   
    justify-content: center;
    gap: 15px;
    margin-bottom: 7px;
}

.chip-tron-p-live-chat {
    color: #c1e1ec;
    font-size: 14px;
}


.chip-tron-p-live-chat strong {
    color: #01cdff;
}

.chip-tron-button {
    padding: 15px 30px;
    border-radius: 25px;
    background: linear-gradient(135deg, #007aff, #00d4ff);
    margin-bottom: 12px;
    color: #0a0a0a;
    font-weight: bold;
    border: none;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
    transition: transform 0.3s ease, box-shadow 0.4s ease, background 0.4s ease;
    box-shadow: 0 0 25px rgba(0, 170, 255, 0.8);
    font-family: 'Orbitron', sans-serif;
    position: relative;
    overflow: hidden;
    margin-top: 16px;
}

.chip-tron-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(0, 170, 255, 0.15), transparent);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
    z-index: 0;
}

.chip-tron-button:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.chip-tron-button:hover {
    background: linear-gradient(135deg, #005bb5, #00a3ff);
    box-shadow: 0 0 35px rgba(0, 170, 255, 1);
    transform: scale(1.05);
}

.chip-tron-button:focus {
    outline: none;
}

/* Animation for Tron Pulsing Effect */
@keyframes chip-tron-pulse {
    from {
        box-shadow: 0 0 20px rgba(0, 170, 255, 0.3);
    }
    to {
        box-shadow: 0 0 35px rgba(0, 170, 255, 0.6);
    }
}

.tron-usage-info {
    /* background: linear-gradient(135deg, #0A0A0A 0%, #1a1a2e 100%); */
    padding-bottom: 47px;
    width: 60%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    border-radius: 10px;
    /* box-shadow: 0 0 30px rgba(0, 170, 255, 0.3); */
    /* animation: tron-pulse 1.5s infinite alternate; */
    font-family: 'Orbitron', sans-serif;
}

.tron-usage-info p {
padding-left: 20px;
padding-right: 20px;


}

.tron-usage-header {
    font-size: 18px;
    color: #00d4ff;
    margin-top: 15px;
    margin-bottom: 10px;
}


.tron-usage-details {
    /* background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%); */
    padding: 20px;
    width: 90%;
    max-width: 700px;
    margin: 20px auto;
    text-align: left;
    border-radius: 10px;
    font-family: 'Orbitron', sans-serif;
    color: #c1e1ec;
    box-shadow: 0 0 7px rgba(0, 170, 255, 0.5);
}

.tron-usage-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}


.toggle-button.expanded {
    transform: rotate(45deg); /* Rotate to show as a minus */
}

.tron-usage-title {
    font-size: 24px;
    color: #00d4ff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 170, 255, 0.7);
}


.tron-usage-intro, .tron-usage-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #c1e1ec;
}


.tron-usage-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tron-usage-list li {
    /* background: rgba(30, 30, 46, 0.8); */
    padding: 10px;
    margin-bottom: 8px;
    border-radius: 5px;
    font-size: 15px;
    color: #ffffff;
    box-shadow: inset 0 0 7px rgba(0, 170, 255, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tron-usage-list li:hover {
    transform: scale(1.03);
    box-shadow: 0 0 25px rgba(0, 170, 255, 0.8);
}

.tron-usage-list li:hover {
    transform: scale(1.03);
    box-shadow: 0 0 20px rgba(0, 170, 255, 0.8);
}

.tron-usage-example {
    background: rgba(0, 170, 255, 0.1);
    border-left: 4px solid #00d4ff;
    padding: 10px;
    font-size: 15px;
    line-height: 1.6;
    color: #c1e1ec;
    border-radius: 5px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.tron-usage-example ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tron-usage-example ul li {
    padding: 5px 0;
    color: #ffffff;
}

@keyframes tron-pulse {
    from {
        box-shadow: 0 0 20px rgba(0, 170, 255, 0.3);
    }
    to {
        box-shadow: 0 0 35px rgba(0, 170, 255, 0.6);
    }
}


.tron-customer-journey-section {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0d0d0d, #0b1c38);
    align-items: center;
    justify-content: center;
    z-index: 15000;
    animation: fadeIn 0.5s ease-in-out;
    overflow-y: auto;
}

.tron-journey-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.tron-journey-container {
    display: flex;
    max-width: 1000px;
    background: #10101b;
    border-radius: 2px;
    box-shadow: 0 0 50px rgba(0, 170, 255, 0.7);
    width: 85%;
    border: 0px solid rgba(0, 170, 255, 0.6);
    overflow-x: hidden;
    position: relative;
    /*margin-top: 89px;*/
}

.tron-journey-steps {
    width: 220px;
    padding: 25px;
    background: rgb(10 10 30 / 0%);
    border-right: 1px solid rgba(0, 170, 255, 0.7);
    transition: background 0.3s ease-in-out;
}


.tron-header {
    margin-bottom: 20px; /* Added spacing below the h2 */
    margin-top: 27px;
    font-size: 28px; /* Larger font size for a more prominent look */
    font-weight: 100;
    text-align: center;
    color: #00e0ff; /* Neon blue for a futuristic touch */
    text-shadow: 0 0 15px rgba(0, 224, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1.5px; /* Spacing between letters for a futuristic vibe */
    font-family: 'Montserrat', sans-serif;
}
.login-header {
    padding: 0px 20px 0px 20px;
    margin-top: 0px;
}


.tron-description {
    margin-bottom: 30px; /* Added spacing below the description */
    font-size: 18px; /* Slightly larger for readability */
    color: #a6a6ff; /* Softer neon tone */
    line-height: 1.6;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.tron-journey-steps ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tron-journey-steps li {
    padding: 18px 0;
    font-size: 20px;
    color: #c1c1ff;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    border-bottom: 1px solid rgba(0, 170, 255, 0.2);
}

.tron-journey-steps li.active,
.tron-journey-steps li:hover {
    color: #00e0ff;
    font-weight: bold;
    text-shadow: 0 0 15px rgba(0, 170, 255, 0.8);
    font-family: 'Montserrat', sans-serif;
}

.tron-journey-forms {
    flex-grow: 1;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.tron-journey-form-step {
    display: none;
}

.tron-journey-form-step.active {
    display: block;
}

.tron-journey-submit-button {
    width:100%;
    padding: 18px;
    background: linear-gradient(135deg, #007aff, #00d4ff);
    color: #0a0a0a;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 170, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.tron-journey-submit-button:hover {
    background: linear-gradient(135deg, #005bb5, #00a3ff);
    box-shadow: 0 0 30px rgba(0, 170, 255, 1);
    transform: scale(1.05);
}


/* Success Message Styling */
.success-message {
    background-color: rgba(0, 170, 255, 0.2);
    color: #00ffff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 170, 255, 0.5);
    animation: glowSuccess 1.5s infinite alternate;
}

/* Close Button for the Overlay */
.chiptron-close-overlay {
    position: absolute;
    background: none;
    color: #ffffff;
    border: none;
    padding: 8px 12px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    top: 14px;
    right: 14px;
    /*box-shadow: 0 0 10px rgba(0, 170, 255, 0.5);*/
    transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
    z-index: 1003;
}

.chiptron-close-overlay:hover {
    background: var(--primary-color);
    color: var(--accent-color);
    box-shadow: 0 0 10px var(--primary-color);
    transform: scale(1.1);
}

/* Neon Success Animation */
@keyframes glowSuccess {
    from {
        box-shadow: 0 0 10px rgba(0, 170, 255, 0.4);
    }
    to {
        box-shadow: 0 0 20px rgba(0, 170, 255, 0.8);
    }
}

.change-plan-container {
    margin: 15px 0;
}

.change-plan-text {
    color: #c1c1ff;
    font-size: 14px;
}

.change-plan-link {
    color: #00d4ff;
    text-decoration: underline;
    cursor: pointer;
    font-weight: bold;
}

.pricing-options-popup {
    display: none; /* Hidden by default, only show when toggled */
    background: #10101b;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 170, 255, 0.8);
    margin-top: 20px;
    width: 90%;
    max-width: 500px;
    position: absolute;
    z-index: 1003;
    left: 50%;
    transform: translateX(-50%);
}

.tron-plan-title {
    font-size: 22px;
    color: #00d4ff;
    margin-bottom: 10px;
    text-align: center;
    text-transform: uppercase;
}




.info-icon {
    font-size: 20px;
    color: #00d4ff;
    margin-left: 10px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.info-icon:hover {
    color: #5ac8fa;
}


/* Futuristic Info Icon Styling */
.info-icon {
    font-size: 26px;
    color: #5ac8fa;
    transition: transform 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: inline-block;
    padding: 5px;
    border-radius: 50%;
    background: rgba(0, 170, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 170, 255, 0.8);
    position: relative;
    animation: pulseGlow 2s infinite alternate;
}

.info-icon:hover {
    transform: rotate(45deg) scale(1.1);
    color: #00d4ff;
    background: rgba(0, 170, 255, 0.4);
}

/* SVG Icon Customization */
.info-svg {
    width: 24px;
    height: 24px;
}

.info-circle {
    fill: none;
    stroke: #5ac8fa;
    stroke-width: 2;
    animation: rotateCircle 2s infinite linear;
}

.info-symbol {
    fill: #5ac8fa;
    transition: fill 0.3s ease;
}

.info-icon:hover .info-symbol {
    fill: #00d4ff;
}

/* Circle Rotation Animation */
@keyframes rotateCircle {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Glow Effect Animation */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 15px rgba(0, 170, 255, 0.8);
    }
    100% {
        box-shadow: 0 0 30px rgba(0, 170, 255, 1);
    }
}


.tron-register-usage-info {
    background: rgb(10 10 30 / 90%);
    padding: 30px;
    border-radius: 15px;
    /*box-shadow: 0 0 25px rgba(0, 204, 255, 0.3);*/
    color: #d8e9f2;
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    animation: tron-pulse 2s infinite alternate;
}

.tron-usage-register-title {
    font-size: 28px;
    color: #00ccff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(0, 204, 255, 1);
}

.tron-usage-register-intro, .tron-usage-register-example, .tron-usage-register-summary {
    font-size: 18px;
    color: #d8e9f2;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
}

.tron-usage-register-list {
    text-align: left;
    margin: 0 auto 30px auto;
    padding-left: 30px;
    padding-right: 30px;
    max-width: 600px;
    list-style: none;
}

.tron-usage-register-list li {
    font-size: 18px;
    color: #ffffff;
    text-align: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f2e 100%);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 204, 255, 0.5);
}

.tron-usage-register-list li:hover {
    transform: scale(1.03);
    box-shadow: 0 0 35px rgba(0, 204, 255, 0.8);
}

.close-usage-info {
    background: linear-gradient(135deg, #ff4d4d, #ff6e6e);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    cursor: pointer;
    font-size: 18px;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5), inset 0 0 15px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.close-usage-info::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(60deg, rgba(255, 100, 100, 0.4), rgba(255, 0, 0, 0.4));
    z-index: 0;
    transition: all 0.5s;
    transform: rotate(45deg);
    opacity: 0;
}

.close-usage-info:hover::before {
    opacity: 1;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
}

.close-usage-info:hover {
    background: linear-gradient(135deg, #ff5555, #ff8888);
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.8), inset 0 0 20px rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

@keyframes tron-pulse {
    from {
        box-shadow: 0 0 25px rgba(0, 204, 255, 0.3);
    }
    to {
        box-shadow: 0 0 40px rgba(0, 204, 255, 0.6);
    }
}


.tron-payment-title, .tron-register-title {
    font-size: 32px;
    font-weight: 100;
    color: #00ccff;
    text-transform: uppercase;
    margin-bottom: 14px;
    text-shadow: 0 0 20px rgba(0, 204, 255, 1);
    font-family: 'Montserrat', sans-serif;
}

.selected-plan-text, .total-cost-text {
    font-size: 22px;
    color: #00ccff;
    margin: 10px 0;
    text-shadow: 0 0 15px rgba(0, 204, 255, 0.7);
}

.plan-name, .total-amount {
    color: #ffae1c;
    font-weight: bold;
}

.usage-text {
    display: inline-block;
    font-size: 18px;
    color: #ffae1c;
    margin-left: 5px;
    vertical-align: middle;
}

.usage-info-link {
    color: #00ccff;
    text-decoration: none;
    font-size: 18px;
    margin-left: 5px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.usage-info-link:hover {
    color: #ffae1c;
    text-shadow: 0 0 15px rgba(255, 174, 28, 0.8);
}


.usage-overlay {
    display: none; /* Hidden initially */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0d0d0d, #0b1c38);
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
    z-index: 1002;
    display: flex; /* Apply flex properties for centering */
    animation: fadeIn 0.5s ease-in-out;
    overflow-y: auto; /* Allow scrolling if content overflows */
}

/* Usage Explanation Container */
.usage-explanation-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 90%;
    padding: 20px;
    border-radius: 12px;
    z-index: 1250;
    
}

/* Adding a fade-in effect */
.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Plan Selection Overlay Styling */
.plan-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0d0d0d, #0b1c38);
    align-items: center;
    justify-content: center;
    z-index: 1003;
    display: flex;
    overflow-y: auto;
}

/* Pricing Popup Container */
.pricing-popup-container {
    max-width: 800px;
    width: 90%;
    background: #10101b;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(0, 204, 255, 0.5);
    position: relative;
    text-align: center;
    animation: fadeIn 0.3s forwards;
}



/* Tron-style table */
.tron-comparison-section {
    width: 60%;
    max-width: 800px;
    /* margin: 20px 0px 40px 170px; */
    padding: 20px;
    margin: 0px auto;
    margin-bottom: 17px;
    /* background: rgba(0, 0, 0, 0.8); */
    border-radius: 8px;
    /* box-shadow: 0 0 15px rgba(0, 212, 255, 0.7); */
}

.tron-comparison-title {
    max-width: 800px;
    width: 100%;
    padding: 0px 30px 0px 30px;
    text-align: center;
    color: #00d4ff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 24px;
    margin-bottom: -4px;
    text-shadow: 0 0 10px rgba(0, 170, 255, 0.7);
}

.comparison-intro {
    color: #c1e1ec;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1rem;
    margin-top: 16px;
}

.tron-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
}

.tron-table th, .tron-table td {
    padding: 12px;
    text-align: left;
    color: #c1e1ec;
    border: 1px solid #00d4ff;
}

.tron-table th {
    /* background-color: #001f29; */
    color: #00d4ff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 18px;
}

.tron-table td {
    /* background-color: #001921; */
    font-size: 16px;
}

.check i {
    color: #00FF9F;
}

.no-check i {
    color: #ff0044;
}

.tron-table .check {
    color: #16d375;
    /* font-weight: bold; */
}

.tron-table .no-check {
    color: #da7167;
    /* font-weight: bold; */
}

.tron-table tbody tr:hover {
    background-color: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.button-container {
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
    /*height: 100vh; /* Full viewport height, adjust as needed */
    margin-top: 14px;
    margin-left: 14px;
    margin-right: 14px;
}

.forgot-password-link {
    display: inline-block;
    color: #00d4ff;
    font-size: 1rem;
    /* font-weight: bold; */
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
    /* margin: 15px 0px 0px 107px; */
    display: block;
    text-align: center;
    margin: 15px auto 0px;
    font-family: 'Montserrat', sans-serif;
}

.forgot-password-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.2), transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease;
    border-radius: 50%;
    pointer-events: none;
}

.forgot-password-link:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.forgot-password-link:hover {
    color: #00a1cc;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.6), 0 0 20px rgba(0, 212, 255, 0.4);
}

.forgot-password-link:active {
    color: #0088a3;
}

/* Style for Back Arrow Button */
.back-arrow {
    position: absolute;
    top: 0px;
    left: 15px;
    background: transparent;
    color: #00d4ff;
    font-size: 37px;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.back-arrow:hover {
    color: #00a1cc;
}


.icon-circle {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;  /* Makes the icon circular */
    background-color: var(--primary-color);  /* Primary color background */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);  /* Adds a slight shadow for depth */
}

.icon-circle img {
    width: 70%;  /* Adjust image size within the circular container */
    height: 70%;
    object-fit: contain;
}
/* Hero Section */
.chip-hero-section {
    width: 100%;
    height: auto;
    min-height: 95vh;
    background-image: url('PromoImage2.png');
    background-size: 104%;
    background-position: top right;
    background-repeat: no-repeat;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 5%;
    position: relative;
    margin-top: 58px;
}

/* Background Overlay */
.chip-hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 30%, rgba(0, 0, 0, 0.2) 100%); */
    z-index: 1;

}

/* Hero Content */
.chip-hero-content {
    max-width: 500px;
    color: #E6FFFF; /* Light cyan */
    text-align: left; /* Align text to the left */
    position: relative; /* To stay above the overlay */
    z-index: 2;
    padding-top: 0px; /* Add spacing at the top */
    margin-top: -135px;
}

/* Hero Title */
.chip-hero-title {
    font-size: 2.8rem;
    font-weight: 400;
    color: #00d0fb; /* Tron-inspired cyan */
    margin-bottom: 1rem;
    line-height: 1.2;
    /* text-shadow: 3px -3px 12px rgb(198 210 226 / 45%); */ /* Text shadow for better contrast */
    /* text-shadow: 0 0 20px rgba(0, 170, 255, 0.8); */
}

/* Hero Subheading */
.chip-hero-subheading {
    font-size: 1.4rem;
    color: #ffffff; /* Tron-inspired light yellow */
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7); /* Text shadow for better contrast */
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

/* Hero Details */
.chip-hero-details {
    font-size: 1;
    color: #fff90b; /* Light cyan */
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7); /* Text shadow for better contrast */
    line-height: 1.8rem;
}

/* CTA Button */
.chip-hero-cta {
    display: flex;
    justify-content: center; /* Center the button */
    margin-top: 47px;
}

.chip-hero-button {
    position: relative;
    display: inline-block;
    padding: 20px 40px; /* Increase padding for a larger button */
    font-size: 1.4rem; /* Larger font size */
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff; /* White text */
    background: linear-gradient(135deg, #001f3f, #00d4ff); /* Base background */
    border: none;
    border-radius: 0px; /* Make the button more rounded */
    overflow: hidden; /* Ensure hover effects stay within bounds */
    z-index: 1;
    cursor: pointer;
    transition: all 0.4s ease; /* Smooth transitions */
    box-shadow: 0 0 1px rgba(0, 170, 255, 0.8); /* Initial glow effect */
    font-family: 'Montserrat', sans-serif;
}

.chip-hero-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400%; /* Make radial gradient larger */
    height: 400%; /* Adjust size for emphasis */
    background: radial-gradient(circle, rgba(0, 170, 255, 0.3), transparent); /* Stronger glow effect */
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s ease; /* Slower and smoother animation */
    z-index: 0;
}

.chip-hero-button:hover::before {
    transform: translate(-50%, -50%) scale(1.2); /* Slightly larger hover effect */
}

.chip-hero-button:hover {
    background: linear-gradient(135deg, #07101f, #c1e1ec); /* Reverse gradient for hover */
    box-shadow: 0 0 40px rgba(0, 170, 255, 1), 0 0 60px rgba(0, 170, 255, 0.8); /* Intense glow */
    transform: scale(1.1); /* Slightly enlarge button on hover */
}

.chip-hero-button:focus {
    outline: none;
    box-shadow: 0 0 50px rgba(0, 170, 255, 1), 0 0 70px rgba(0, 170, 255, 0.8); /* Extra glow for focus */
}

/* Add a glowing border */
.chip-hero-button::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid rgba(0, 170, 255, 0.5); /* Glowing border */
    border-radius: 1px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease, box-shadow 0.4s ease;
}

.chip-hero-button:hover::after {
    opacity: 1;
    box-shadow: 0 0 20px rgba(0, 170, 255, 0.5), 0 0 40px rgba(0, 170, 255, 0.8); /* Glowing border effect */
}

.tron-section {
    background: linear-gradient(90deg, #001f3f 0%, #001830 100%);
    padding: 60px 20px;
    color: #00d4ff;
    text-align: center;
}

.tron-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00d4ff;
}

.tron-intro {
    font-size: 1.4rem;
    color: #c1e1ec;
    margin-bottom: 40px;
    font-family: 'Montserrat', sans-serif;
}
/* Tron Features Section */
.tron-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.tron-feature {
    width: 300px;
    text-align: center;
    font-size: 57px;
    margin: 0px;
    font-family: 'Montserrat', sans-serif;
}

.tron-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #00d4ff;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.tron-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tron-feature h3 {
    font-size: 1.8rem;
    color: #00d4ff;
    margin-bottom: 10px;
    margin-top: 7px;
}

.tron-feature p {
    font-size: 1.4rem;
    color: #c1e1ec;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

/* Call-to-Action Button */
.tron-cta {
    margin-top: 40px;
    font-family: 'Montserrat', sans-serif;
}

.tron-button {
    font-size: 16px;
    color: #fff;
    background: #00d4ff;
    padding: 10px 20px;
    border-radius: 5px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    transition: background 0.3s ease;
}

.tron-button:hover {
    background: #007aff;
}
/* How It Works Section */
.tron-section {
    background: #001f3f; /* Tron-themed background */
    padding: 60px 20px;
    color: #00d4ff;
    text-align: center;
}

.tron-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00d4ff;
}

.tron-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.tron-step {
    width: 300px;
    text-align: center;
}

.tron-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #00d4ff;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.tron-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tron-step h3 {
    font-size: 1.8rem;
    color: #00d4ff;
    margin-bottom: 10px;
}

.tron-step p {
    font-size: 1.4rem;
    color: #c1e1ec;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

.tron-divider {
    width: 100%;
    height: 27vh;
    text-align: center;
    background-color: #323333; /* Background color to blend with the site */
    padding: 0px 0;
    padding-bottom: 0px;
}

.tron-divider img {
    max-width: 100%;
    height: 27vh;
    display: block;
    margin: 0px auto;
    padding: 27px;
}

#usage-details {
    display: none;
    border: 1px solid #ccc;
    padding: 16px;
    margin-top: 12px;
    background: #f9f9f9;
  }

  #assistant-cost .tron-cost-breakdown {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 20px; /* Space between items */
    margin-top: 40px;
}

#assistant-cost .tron-cost-item {
    flex: 1 1 calc(45%); /* Adjust width for balance */
    text-align: center;
    font-size: 57px;
    color: #E6FFFF; /* Light cyan text */
    padding: 10px;
    margin: 10px 0;
    border: none; /* Removes lines */
    border-radius: 4px;
}

#assistant-cost .tron-cost-item h3 {
    font-size: 1.8rem;
    color: #6FC3DF; /* Tron-inspired cyan */
    margin-bottom: 10px;
    font-weight: 600;
    margin-top:7px;
}

#assistant-cost .tron-cost-item p {
    font-size: 1.4rem;
    color: #c1e1ec; /* Lightly dimmed cyan for readability */
    line-height: 1.8rem;
    font-family: 'Montserrat', sans-serif;
}

/* Section Style */
#assistant-cost {
    background: #0a0e14; /* Subtle dark blue to divide sections */
    padding: 60px 50px;
    text-align: center;
}

#assistant-cost .tron-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.4rem;
    text-transform: uppercase;
    color: #00d4ff;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

#assistant-cost .tron-intro {
    font-size: 1.4rem;
    color: #c1e1ec;
    margin-bottom: 40px;
    line-height: 1.8;
    font-family: 'Montserrat', sans-serif;
}


@media (max-width: 768px) {

    .chip-hero-section {
        margin-top: 54px;
        background-size: 90%;
        min-height: 81vh;
        margin-right: -18px;
        background-size: 178%;
        background-position: top;
        justify-content: center;
        padding: 0px;
        margin-left: 0px;
        background-position: top right;
    
    }
    
    .hero-header .header-text {
        gap: 0px;
    }

    .activate-ai {
        font-size: 1rem;
        background: #0a0e14;
        color: #ffffff;
        height: 7.5vh; /* Full 8vh height for mobile */
        line-height: 8vh; /* Centers text vertically */
        padding: 0 12px; /* Horizontal padding */
        text-align: center;
        /* border: 1px solid #000; */
    }

    .hero-header {
    height: 10vh;
    padding-left: 0px;
    
}

    #loginButton {
        background: transparent;
        color: #c1e1ecba;
        /* border: 1px solid #fff; */
        margin-right: -7px;
    }

.hero-header .header-text h1 {
        font-size: 1.5rem;
        letter-spacing: 0px;
        font-family: 'Orbitron', sans-serif;
    }

.hero-header .header-text p {
        font-size: .8rem;
        color: #c1e1ec;
        margin: 5px 0 0;
        font-weight: lighter;
        text-align: left;
        display: flex;
        padding-left: 7px;
        margin-top: 10px;
    }
    

    
    /* Buttons Container */
.activate-ai-container {
        gap: 7px;
        padding-right: 0px;
        /* width: 200px; */
    
    }
    
    .chip-hero-section {
        justify-content: center; /* Center content on smaller screens */
        /* background-size: cover; */
        background-color: #020202;
    }

    .chip-hero-content {
        position: absolute;
        top: 93%;
        left: 50%;
        width: 90%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: #E6FFFF;
        z-index: 2;
        /* background: rgba(0, 0, 0, 0.6); */
        /* padding: 20px; */
        border-radius: 8px;
    
    }

    .chip-hero-cta {
        justify-content: center; /* Ensure button stays centered */
    }

    .chip-hero-button {
    padding: 14px 26px; /* Increase padding for a larger button */
    font-size: 1rem; 
    }

    .chip-hero-title {
        font-size: 1.9rem;
        margin-top: 0px;
        margin-bottom: 5px;
        line-height: 1.4;
        font-weight: 550;
    }

    .chip-hero-subheading {
        font-size: 1.2rem;
        font-weight: 100;
        line-height: 1.6;
        font-family: 'Montserrat', sans-serif;
    }

    .chip-hero-cta {
              margin-top: 25px;
    }

    .tron-steps {
        flex-direction: column;
        align-items: center;
    }

    .tron-step {
        width: 90%;
    }


    .chat-window {
        width: 255px;
        min-height: 327px;
        max-height: 332px;
    }
    
    
    
    .chat-body {  
        max-height: 207px;
        min-height: 234px;
    }


    /* Responsive styling for mobile devices */

    .header-container {
        justify-content: center; /* Center horizontally */
        top: 44px; /* Position 54px from the top */
    }
    .header-text {
        align-items: center; /* Center text alignment */
        text-align: center; /* Center text */
    }

    


    .forgot-password-link {
        /* margin: 15px 0px 0px 55px; */
        display: block;
        text-align: center;
        margin: 15px auto 0px;
    }

    .payment-form-step{
        margin-left: -30px;
        margin-right: -30px;
    }

    .tron-usage-info {
        padding-bottom: 27px;
    }

    .tron-comparison-section {
        width: 355px;
        padding: 15px;
    }
    .hero-header {
        height: 8vh;
        /* margin-left: 6px; */
        /* margin-top: 4px; */
        padding-left: 7px;
        border-bottom: 1px solid color(srgb 0.71 0.83 0.88 / 0.15);
    }

    .tron-comparison-title {
        font-size: 1.5rem;
    }

    .comparison-intro {
        font-size: 0.9rem;
    }
    
    .hero-content {
        padding: 14px 20px 0px 20px;
    }

    .hero-content h1 {
        margin-bottom: 17px;
        padding-left: 0px;
        padding-right: 0px;
    }


    .pricing-carousel {
        overflow-x: auto;
        max-width: 100%;
        padding: 0px 0; /* Extra padding for top and bottom */
        margin: 0px 0; 
    }

    .pricing-options {
        gap: 27px; /* Increased gap between plans on mobile */
        padding: 10px 10px;

    }

    .price-deal {
        width: 37%; /* Close to full viewport width on mobile */
        min-width: 67%;
        min-height: 370px; /* Increased min-height to fit content */
        margin: 0 5px;
        padding: 7px; /* Increased padding for better visibility */
        scroll-snap-align: center; /* Center align to ensure full view */
    }
    .usage-text, .class-amount, .total-cost-text,
    .selected-plan-text, .plan-name {
        display: none;
    }

    .price-deal p {
        font-size: 1.17rem;
    }

    .price-deal h2 {
        font-size: 1.7rem;
    }

    .price-deal .additional-cost {
        font-size: 1.0rem;
    }

    .price-deal .best-deal {
        font-size: 0.85rem;
    }

    .tron-journey-overlay {
        height: 100vh;
    }
    
   

    .tron-journey-container {
        flex-direction: column; /* Stack the steps and forms */
        padding: 10px;
        width:93%;
        background: #1b1b2f4a;
        box-shadow: 0 0 20px rgba(0, 170, 255, 0.7);
        border:0px;
        margin-top: 27px;
    }

    .tron-journey-steps {
        display: none;
    }

    .tron-journey-forms {
        padding: 9px 27px 15px 27px;
    }

    .register-form {
        display: flex;
        flex-direction: column;
        gap: 2px;
        max-width: 500px;
        margin: 0 auto;
    }


    .tron-journey-submit-button{
        margin-top:9px;
        width: 100%;
    }



    .tron-response-area {
        display:none;
    }

    .tron-header {
        margin-top:7px;
    }

    .tron-payment-title {
        text-align: center;
        font-size: 27px;
        padding: 0px 71px 0px 71px;
        margin-bottom: 20px;
        margin-top: 7px;
    }

    /* Toggle button for journey steps */
    .journey-steps-toggle {
        display: block;
        background-color: var(--accent-color);
        color: var(--text-color);
        text-align: center;
        padding: 10px;
        margin-bottom: 10px;
        cursor: pointer;
    }

    /* Show the steps when toggled */
    .journey-steps.show {
        display: block;
    }

    /* Adjust input fields for mobile */
    .journey-form-step input {
        width: 100%;
        padding: 10px;
        margin: 10px 0;
    }

    /* Adjust button for mobile */
    .journey-submit-button {
        width: 100%;
        padding: 15px;
    }
    .tron-chat-overlay-content {
        max-width: 100%;
        padding: 15px;
        
    }

    .tron-chat-messages {
        max-height: 435px;
    }
    
    .tron-message-chip,
    .tron-message-user {
        max-width: 85%;
        font-size: 13px;
    }

    .tron-assistant-title {
        font-size: 22px;
    }
    .chip-tron-configuration {
        /* background: linear-gradient(135deg, #0A0A0A 0%, #1a1a2e 100%); */
        padding: 12px 14px;
        text-align: center;
        border-top: 1px solid rgba(26, 26, 46, 0.8);
        width: 355px;
        margin: 0 auto;
        box-shadow: 0 0 30px rgba(0, 170, 255, 0.3);
        animation: chip-tron-pulse 1.5s infinite alternate;
        /* border-radius: 12px; */
        margin-bottom: 21px;
    
    }

    .chip-tron-config-description{
        padding-left: 0px;
        padding-right: 0px;
    }

    .pricing-options-popup {
        width: 100%;
        max-width: 350px;
    }

    .tron-plan-title {
        font-size: 18px;
    }

    .tron-usage-info {
        width: 100%;
        max-width: 350px;
    }

    .info-icon {
        font-size: 18px;
    }

    .tron-usage-title {
        font-size: 1.2em;
        margin-top: 23px;
    }
    .tron-comparison-title {
        font-size: 1.5em;
    }

    .tron-comparison-title {
        font-size: 1.2em;
    }

    .tron-comparison-section {
        width: 100%;
        padding: 9px;
    }
    

    .tron-table th, .tron-table td {
        padding: 4px;
        font-size: 12px;

    }

    /* Center-align text for a cleaner mobile look */
    .tron-table th, .tron-table td {
        text-align: center;
    }

    @media only screen and (orientation: landscape) {
    .chip-hero-section {
        margin-top: 54px;
        height: 87vh; /* Reduce height to fit better */
        width: 100%;
        display: flex;
        flex-direction: row; /* Arrange items horizontally */
        background-size: cover;
        justify-content: space-between; /* Space out the content */
        align-items: center; /* Center content vertically */
        /* padding: 0 10%; */ /* Add horizontal padding */
    }
 .chip-hero-content {
            position: absolute;
            top: 94%;
            left: 26%;
            width: 44%;
            transform: translate(-50%, -50%);
            text-align: left;
            color: #E6FFFF;
            z-index: 2;
            /* background: rgba(0, 0, 0, 0.6); */
            /* padding: 20px; */
            border-radius: 8px;
            /* padding-right: 14px; */
        
        }


    .chip-hero-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* background: linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4)); */ /* Adjust overlay for better contrast */
        z-index: 1;
    }

    .chip-hero-button {
        font-size: 1rem; /* Smaller button text */
        padding: 10px 20px; /* Adjust button size */
    }

      .hero-header {
        height: 14vh;
        /* margin-left: 6px; */
        /* margin-top: 4px; */
        padding-left: 23px;
        border-bottom: 1px solid color(srgb 0.71 0.83 0.88 / 0.15);
    }
      .chip-hero-cta {
            margin-top: 18px;
        
        }
        .chip-hero-subheading{
            margin-bottom:0px;
        }

        .activate-ai {
        font-size: 1rem;
        background: #0a0e14;
        color: #ffffff;
        height: 14vh; /* Full 8vh height for mobile */
        line-height: 14.5vh; /* Centers text vertically */
        padding: 0 12px; /* Horizontal padding */
        text-align: center;
        /* border: 1px solid #000; */
        font-family: 'Montserrat', sans-serif;
    }
        .login-overlay-content {
 max-height: 90vh; /* Further restrict height for landscape on small devices */
        padding: 15px;
            overflow-y:auto;
            
        }
        .tron-journey-overlay {
             max-height: 90vh; /* Further restrict height for landscape on small devices */
        padding: 15px;
            overflow-y:auto;
            
        }
            .tron-journey-container {
            margin-top:300px;
            }

           .chat-window {
        width: 255px;
        min-height: 241px;
        max-height: 241px;
    }

           
    .chat-body {
        max-height: 147px;
        min-height: 147px;
    }
     
}
