@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --bg-dark: #0f172a;
    --bg-card: #0f172a;
    --border-color: transparent;
    --border-hover: transparent;
    
    --primary-gradient: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    --primary-glow: rgba(37, 99, 235, 0.2);
    --success-gradient: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --success-glow: rgba(16, 185, 129, 0.1);
    
    --text-main: #f1f5f9;
    --text-muted: #64748b;
    --text-highlight: #2563eb;
    
    --font-heading: "Space Grotesk", system-ui, sans-serif;
    --font-body: "Inter", system-ui, sans-serif;
    
    /* Neumorphic Shadows - Dark Theme (#0f172a) */
    --neu-dark-shadow-dark: #070a13;
    --neu-dark-shadow-light: #17223e;
    --neu-dark-raised: 8px 8px 16px var(--neu-dark-shadow-dark), -8px -8px 16px var(--neu-dark-shadow-light);
    --neu-dark-inset: inset 4px 4px 8px var(--neu-dark-shadow-dark), inset -4px -4px 8px var(--neu-dark-shadow-light);
    
    /* Neumorphic Shadows - Light Theme (#e2e8f0) */
    --neu-light-bg: #e2e8f0;
    --neu-light-shadow-dark: #becbdc;
    --neu-light-shadow-light: #ffffff;
    --neu-light-raised: 8px 8px 16px var(--neu-light-shadow-dark), -8px -8px 16px var(--neu-light-shadow-light);
    --neu-light-inset: inset 4px 4px 8px var(--neu-light-shadow-dark), inset -4px -4px 8px var(--neu-light-shadow-light);
}

/* Base Body Styling */
body {
    /* background-color: var(--bg-dark); */
    color: var(--text-muted);
    font-family: var(--font-body);
    overflow-x: hidden;
    position: relative;
}

/* Dark mode text readability overrides */
/* p,
.text-muted {
    color: #ffffff; 
} */

/* Background Ambient Orbs - Disabled for pure Neumorphism */
.bg-orb {
    display: none;
}

.orb-1 {
    top: 5%;
    left: -100px;
    background: radial-gradient(circle, #3b82f6, transparent 70%);
    animation: floatOrb 25s infinite alternate ease-in-out;
}

.orb-2 {
    top: 35%;
    right: -100px;
    background: radial-gradient(circle, #8b5cf6, transparent 70%);
    animation: floatOrb 30s infinite alternate-reverse ease-in-out;
}

.orb-3 {
    bottom: 15%;
    left: 20%;
    background: radial-gradient(circle, #10b981, transparent 70%);
    animation: floatOrb 20s infinite alternate ease-in-out;
}

@keyframes floatOrb {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(40px) scale(1.15); }
}

/* Typography Customization */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-gradient-success {
    background: var(--success-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Navigation Customizations */
.navbar-custom {
    padding: 0.5rem 0;
    z-index: 1000;
    background: rgba(248, 250, 252, .8);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.navbar-custom .navbar-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-custom .navbar-brand svg {
    color: #3b82f6;
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.5));
}

.navbar-custom .nav-link {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0 0.5rem;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: var(--text-highlight);
}

.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
}

.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
    width: 100%;
}

/* Custom Badges */
.badge-tech {
    background: rgba(59, 130, 246, 0.1);
    color: var(--text-highlight);
    border: 1px solid rgba(59, 130, 246, 0.2);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}

/* Custom Buttons styling - Neumorphic */
.btn-primary-gradient {
    background: var(--tng-blue);
    color: #fff !important;
    border: none;
    padding: 0.8rem 1.8rem;
    font-weight: 600;
    border-radius: 100px;
    box-shadow: var(--sh-blue);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary-gradient:hover {
    transform: translateY(-3px);
    filter: brightness(1.05);
    background: var(--tng-blue);
    box-shadow: var(--sh-blue);
}

.btn-primary-gradient:active {
    box-shadow: var(--neu-dark-inset);
}

.btn-outline-custom {
    background: var(--bg-dark);
    color: var(--text-main) !important;
    border: none;
    padding: 0.8rem 1.8rem;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: var(--neu-dark-raised);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline-custom:hover {
    box-shadow: 10px 10px 20px #060910, -10px -10px 20px #1c2b4d;
    transform: translateY(-1px);
}

.btn-outline-custom:active {
    box-shadow: var(--neu-dark-inset);
}

/* Neumorphic Cards styling */
.glass-card {
    background: var(--bg-card);
    border: none;
    border-radius: 20px;
    padding: 2.25rem;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    box-shadow: var(--neu-dark-raised);
}

.glass-card::before {
    display: none;
}

.glass-card:hover {
    transform: translateY(-2px);
    box-shadow: 10px 10px 20px #060910, -10px -10px 20px #1c2b4d;
}

/* Index Badges for Cards */
.card-index {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
    transition: color 0.3s ease;
}

.glass-card:hover .card-index {
    color: rgba(59, 130, 246, 0.04);
}

/* Tag capsules inside cards - inset neumorphism */
.tag-capsule {
    display: inline-block;
    font-size: 0.75rem;
    background: var(--bg-dark);
    color: var(--text-muted);
    border: none;
    box-shadow: var(--neu-dark-inset);
    padding: 0.35rem 0.8rem;
    border-radius: 100px;
    margin-right: 0.4rem;
    margin-bottom: 0.4rem;
    transition: all 0.3s ease;
}

.glass-card:hover .tag-capsule {
    color: var(--text-highlight);
}

/* Hero Section Interactive Simulator */
.simulator-wrapper {
    position: relative;
    border-radius: 24px;
    padding: 0;
    background: transparent;
}

.simulator-inner {
    background: var(--bg-dark);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--neu-dark-raised);
}

.sim-input-group {
    background: var(--bg-dark);
    border: none;
    border-radius: 14px;
    padding: 0.5rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    box-shadow: var(--neu-dark-inset);
    transition: all 0.3s ease;
}

.sim-input-group:focus-within {
    box-shadow: inset 5px 5px 10px #05070c, inset -5px -5px 10px #1a2744;
}

.sim-input {
    background: transparent;
    border: none;
    color: #fff;
    font-weight: 500;
    flex-grow: 1;
    padding: 0.6rem 1rem;
}

.sim-input::placeholder {
    color: #475569;
}

.sim-input:focus {
    outline: none;
}

.sim-loader {
    display: none;
    position: relative;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    margin: 1.5rem 0;
}

.sim-loader-bar {
    width: 0%;
    height: 100%;
    background: var(--primary-gradient);
    animation: loaderAnim 2s infinite ease-in-out;
}

@keyframes loaderAnim {
    0% { width: 0%; left: 0; }
    50% { width: 40%; }
    100% { width: 0%; left: 100%; }
}

.sim-results {
    display: none;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1.5rem;
    animation: slideUpFade 0.4s ease forwards;
}

@keyframes slideUpFade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.result-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.04);
}

.result-item:last-child {
    border-bottom: none;
}

.result-label {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.result-val {
    font-weight: 600;
    font-size: 0.85rem;
}

/* Feature Grid specific styling */
.feature-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.glass-card:hover .feature-icon-wrapper {
    background: var(--primary-gradient);
    color: #fff;
    transform: scale(1.1);
}

/* Staggered Connectors in Workflow Section */
.workflow-step {
    position: relative;
}

.workflow-step::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -25%;
    width: 35%;
    height: 2px;
    border-top: 2px dashed rgba(59, 130, 246, 0.2);
    z-index: 1;
}

@media (max-width: 991px) {
    .workflow-step::after {
        display: none;
    }
}

.workflow-step-last::after {
    display: none;
}

.step-num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: none;
    color: #3b82f6;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--neu-dark-raised);
    transition: all 0.3s ease;
}

.workflow-step:hover .step-num {
    color: #2563eb;
    box-shadow: var(--neu-dark-inset);
    transform: scale(0.98);
}

/* PRICING SECTION REDESIGN (2 Columns) */
.price-section-container .price-card {
    height: 100%;
    background: var(--bg-dark);
    border: none;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: var(--neu-dark-raised);
}

.price-section-container .price-card::after {
    display: none;
}

.price-section-container .price-card:hover {
    transform: translateY(-2px);
    box-shadow: 10px 10px 20px #060910, -10px -10px 20px #1c2b4d;
}

.price-header {
    margin-bottom: 1.5rem;
}

.price-tag {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.price-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.price-features-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.price-features-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.price-features-list li svg {
    color: #10b981;
    flex-shrink: 0;
}

/* FAQ Accordion customized */
.accordion-custom .accordion-item {
    background: var(--bg-dark);
    border: none;
    border-radius: 16px !important;
    margin-bottom: 1.5rem;
    box-shadow: var(--neu-dark-raised);
    overflow: hidden;
}

.accordion-custom .accordion-button {
    background: transparent;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    box-shadow: none;
    border: none;
}

.accordion-custom .accordion-button:not(.collapsed) {
    background: var(--bg-dark);
    box-shadow: var(--neu-dark-inset);
    color: #3b82f6;
}

.accordion-custom .accordion-button::after {
    filter: invert(1);
}

.accordion-custom .accordion-body {
    color: var(--text-muted);
    background: var(--bg-dark);
    padding: 1.25rem 1.5rem;
    font-size: 0.95rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.04);
}

/* Footer redesign */
.footer-custom {
    background: #0b0f19;
    border-top: none;
    padding: 5rem 0 2rem;
    font-size: 0.9rem;
}

.footer-custom .footer-heading {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-custom .footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-custom .footer-links li {
    margin-bottom: 0.75rem;
}

.footer-custom .footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-custom .footer-links a:hover {
    color: #3b82f6;
}

.footer-custom .social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-custom .social-btn:hover {
    background: var(--primary-gradient);
    color: #fff;
    border-color: transparent;
    transform: scale(1.05);
}

/* ==========================================================================
   Static Design, CSS Toggles & Alternating Theme Sections - Neumorphic
   ========================================================================== */

/* Show simulator results statically */
.sim-results {
    display: block !important;
}

/* CSS Navbar Toggler Hack */
.nav-toggle-checkbox:checked ~ .navbar-collapse {
    display: block !important;
}

/* CSS FAQ Accordion Toggler Hack */
.faq-toggle:checked ~ .accordion-collapse {
    display: block !important;
}
.faq-toggle:not(:checked) ~ .accordion-collapse {
    display: none !important;
}
/* Rotate chevron when open */
.faq-toggle:checked ~ .accordion-header .accordion-button::after {
    transform: rotate(-180deg);
}
/* Style button when open (dark theme fallback) */
.faq-toggle:checked ~ .accordion-header .accordion-button {
    background: var(--bg-dark);
    box-shadow: var(--neu-dark-inset);
    color: #3b82f6;
}
.accordion-button {
    cursor: pointer;
}

/* Alternating Light Section Styling - Neumorphic Slate */
.section-light {
    background-color: var(--neu-light-bg) !important;
    color: #334155 !important;
    position: relative;
    z-index: 1;
}

/* Headings in light sections */
.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4,
.section-light h5,
.section-light h6,
.section-light .text-white {
    color: #0f172a !important;
}

/* Paragraphs & Muted text in light sections */
.section-light p,
.section-light .text-muted {
    color: #475569 !important;
}

/* Tech badge in light sections */
.section-light .badge-tech {
    background: var(--neu-light-bg) !important;
    color: #2563eb !important;
    border: none !important;
    box-shadow: var(--neu-light-inset) !important;
}

/* Cards styled as premium light Neumorphic cards */
.section-light .glass-card {
    background-color: var(--neu-light-bg) !important;
    border: none !important;
    box-shadow: var(--neu-light-raised) !important;
    backdrop-filter: none !important;
    border-radius: 20px !important;
}

.section-light .glass-card:hover {
    transform: translateY(-2px);
    box-shadow: 10px 10px 20px #b0becf, -10px -10px 20px #ffffff !important;
}

.section-light .glass-card::before {
    display: none !important;
}

.section-light .card-index {
    color: rgba(15, 23, 42, 0.03) !important;
}

.section-light .glass-card:hover .card-index {
    color: rgba(37, 99, 235, 0.05) !important;
}

/* Tags capsules in light sections - sunken/inset style */
.section-light .tag-capsule {
    background: var(--neu-light-bg) !important;
    color: #475569 !important;
    border: none !important;
    box-shadow: var(--neu-light-inset) !important;
}

.section-light .glass-card:hover .tag-capsule {
    color: #2563eb !important;
}

/* Workflow step configuration in light sections */
.section-light .step-num {
    background: var(--neu-light-bg) !important;
    border: none !important;
    color: #2563eb !important;
    box-shadow: var(--neu-light-raised) !important;
}

.section-light .workflow-step:hover .step-num {
    box-shadow: var(--neu-light-inset) !important;
    transform: scale(0.98);
}

.section-light .workflow-step::after {
    border-top: 2px dashed rgba(15, 23, 42, 0.1) !important;
}

/* FAQ Accordion in light sections */
.section-light .accordion-custom .accordion-item {
    background: var(--neu-light-bg) !important;
    border: none !important;
    box-shadow: var(--neu-light-raised) !important;
    border-radius: 16px !important;
}

.section-light .accordion-custom .accordion-button {
    color: #334155 !important;
    background: var(--neu-light-bg) !important;
    border-radius: 16px !important;
}

.section-light .faq-toggle:checked ~ .accordion-header .accordion-button {
    background: var(--neu-light-bg) !important;
    box-shadow: var(--neu-light-inset) !important;
    color: #2563eb !important;
}

.section-light .accordion-custom .accordion-button::after {
    filter: none !important; /* Keep dark chevron icon for light background */
}

.section-light .accordion-custom .accordion-body {
    background: var(--neu-light-bg) !important;
    color: #475569 !important;
    border-top: 1px dashed rgba(15, 23, 42, 0.08) !important;
}

.lead{
    margin-bottom: 30px !important;
}

.glass-card p{
    margin-bottom: 30px !important;
}

.agree-para p{
    color: #fff;
}

.navbar-brand img{
    max-width: 200px !important;
}

/* .trms-sec h2{
    color: #fff !important;
}

.thankyou_sec h2{
    color: #fff;
} */

/* .error_handler_body{
    background-color: #333333 !important;
} */

/* .trms-sec p a{
    color: #fff !important;
} */