.elementor-6822 .elementor-element.elementor-element-91cc771{--display:flex;}/* Start custom CSS for html, class: .elementor-element-03e8f2f *//* SCOPED WRAPPER */
.lx-cloud-page {
    font-family: 'Outfit', sans-serif;
    color: #333;
    line-height: 1.6;
    width: 100%;
    overflow-x: hidden;
    background-color: #f8f9fc;
    
    /* BRAND COLORS */
    --lx-purple: #4A0E8F;
    --lx-magenta: #D62976;
    --lx-orange: #FA8C52;
    --lx-dark: #110524;
    --lx-light-bg: #f4f6fa;
    --lx-gradient: linear-gradient(135deg, #4A0E8F 0%, #D62976 50%, #FA8C52 100%);
    --lx-gradient-text: linear-gradient(135deg, #D62976 0%, #FA8C52 100%);
}

.lx-cloud-page * { box-sizing: border-box; }
.lx-cloud-page a { text-decoration: none; }

/* --- HERO SECTION --- */
.lx-hero {
    position: relative;
    background-color: var(--lx-dark);
    padding: 8rem 5% 6rem;
    text-align: center;
    color: white;
    overflow: hidden;
}

.lx-hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.3; 
    mix-blend-mode: luminosity;
}

.lx-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 90% 10%, rgba(214, 41, 118, 0.4) 0%, transparent 60%),
                radial-gradient(circle at 10% 90%, rgba(74, 14, 143, 0.6) 0%, transparent 60%),
                linear-gradient(to bottom, rgba(17, 5, 36, 0.8), rgba(17, 5, 36, 0.98));
    z-index: 1;
}

.lx-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.lx-hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.lx-text-highlight {
    background: var(--lx-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0px 2px 0px rgba(0,0,0,0.3));
}

.lx-hero p {
    font-size: 1.25rem;
    color: #e0e0e0;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 5px rgba(0,0,0,0.5);
}

.lx-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--lx-gradient);
    color: #ffffff !important;
    font-weight: 700;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 20px rgba(214, 41, 118, 0.4);
    border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    letter-spacing: 0.5px;
}

.lx-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(250, 140, 82, 0.6);
    color: #ffffff;
}

/* --- INTRO SECTION --- */
.lx-intro {
    text-align: center;
    padding: 4rem 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.lx-intro h2 { font-size: 2.2rem; margin-bottom: 1rem; color: var(--lx-dark); }
.lx-intro p { font-size: 1.1rem; color: #555; max-width: 800px; margin: 0 auto; }

.lx-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    text-align: left;
}

.lx-benefit-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border-top: 3px solid var(--lx-magenta);
}

.lx-benefit-item h4 { margin: 0 0 0.5rem 0; color: var(--lx-purple); font-size: 1.1rem; display: flex; align-items: center; gap: 8px;}
.lx-benefit-item p { margin: 0; font-size: 0.9rem; color: #666; }

/* --- SERVICES GRID --- */
.lx-section {
    padding: 5rem 5%;
    background: var(--lx-light-bg);
}

.lx-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.lx-section-header h2 { font-size: 2.5rem; color: var(--lx-dark); margin-bottom: 1rem; }
.lx-section-header p { font-size: 1.1rem; color: #666; }

.lx-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.lx-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.lx-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 5px;
    background: var(--lx-gradient);
    opacity: 0;
    transition: 0.3s;
}

.lx-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(74, 14, 143, 0.1); }
.lx-card:hover::before { opacity: 1; }

.lx-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: inline-flex;
    width: 60px; height: 60px;
    align-items: center; justify-content: center;
    background: rgba(74, 14, 143, 0.08);
    border-radius: 12px;
    color: var(--lx-purple);
}

.lx-card:hover .lx-icon { background: var(--lx-gradient); color: white; }

.lx-card h3 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--lx-dark); }
.lx-card p { color: #666; margin-bottom: 1.5rem; font-size: 1rem; flex-grow: 1; }

.lx-link-cta {
    margin-top: auto;
    color: var(--lx-orange);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex; align-items: center; gap: 5px;
}

.lx-link-cta:hover { color: var(--lx-magenta); }

/* --- ENGAGEMENT PROCESS --- */
.lx-process-section {
    padding: 5rem 5%;
    text-align: center;
    background: #fff;
}
.lx-process-section h2 { color: var(--lx-dark); margin-bottom: 1rem; font-size: 2.2rem; }

.lx-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 4rem auto 2rem;
    counter-reset: process-counter;
}

.lx-step {
    position: relative;
    padding: 2rem 1.5rem;
    background: #f8f9fc;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border: 1px solid #eee;
}

.lx-step::before {
    counter-increment: process-counter;
    content: counter(process-counter);
    position: absolute;
    top: -20px; left: 50%; transform: translateX(-50%);
    width: 40px; height: 40px;
    background: var(--lx-gradient);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.lx-step h4 { color: var(--lx-purple); margin-bottom: 0.5rem; margin-top: 0.5rem; font-size: 1.1rem; }
.lx-step p { font-size: 0.9rem; color: #666; margin: 0; }

/* --- TABLE SECTION WRAPPER --- */
.livexpert-table-section {
    padding: 4rem 5%;
    background: #fff; 
    text-align: center;
}

.table-heading {
    color: var(--lx-dark);
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.table-responsive-wrapper {
    overflow-x: auto;
    max-width: 1000px;
    margin: 3rem auto 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* --- TABLE STYLING --- */
.livexpert-outcomes-table {
    width: 100%;
    border-collapse: separate; 
    border-spacing: 0;
    background: white;
    font-family: 'Outfit', sans-serif;
    min-width: 600px; 
}

/* HEADER STYLES */
.livexpert-outcomes-table thead th {
    background: var(--lx-gradient); 
    color: white;
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Rounded corners for the header */
.livexpert-outcomes-table thead th:first-child { border-top-left-radius: 15px; }
.livexpert-outcomes-table thead th:last-child { border-top-right-radius: 15px; }

/* BODY STYLES */
.livexpert-outcomes-table td {
    padding: 1.2rem 1.5rem;
    color: #555;
    border-bottom: 1px solid #eee;
    font-size: 1rem;
    text-align: left;
}

/* First Column */
.livexpert-outcomes-table td:first-child {
    color: var(--lx-purple);
    font-weight: 500;
    width: 25%;
    background-color: #fcfcfc; 
    border-right: 1px solid #f0f0f0;
}

/* Hover Effect */
.livexpert-outcomes-table tbody tr { transition: background-color 0.2s ease; }
.livexpert-outcomes-table tbody tr:hover { background-color: rgba(214, 41, 118, 0.03); }

/* Last row border removal */
.livexpert-outcomes-table tbody tr:last-child td { border-bottom: none; }

/* --- BADGES --- */
.lx-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.lx-badge.success { background-color: rgba(39, 174, 96, 0.1); color: #27ae60; }
.lx-badge.warning { background-color: rgba(243, 156, 18, 0.1); color: #d35400; }

/* --- TECH STACK --- */
.lx-tech-section {
    background: white;
    padding: 5rem 5%;
    text-align: center;
    border-top: 1px solid #eee;
}

.lx-tech-section h2 { margin-bottom: 1rem; color: var(--lx-dark); font-size: 2.2rem; }

/* --- WHY CHOOSE US --- */
.lx-why-choose {
    background: var(--lx-dark);
    color: white;
    padding: 5rem 5%;
    text-align: center;
}

.lx-why-choose h2 { font-size: 2.5rem; margin-bottom: 1rem; }

.lx-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.lx-why-item {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: left;
    border-left: 4px solid var(--lx-orange);
    transition: 0.3s;
}

.lx-why-item:hover { background: rgba(255,255,255,0.1); }
.lx-why-item h3 { color: white; margin-bottom: 0.5rem; font-size: 1.2rem; display: flex; align-items: center; gap: 10px;}
.lx-why-item p { color: #ccc; font-size: 0.95rem; margin: 0; }

/* --- INDUSTRIES --- */
.lx-industries-section {
    padding: 5rem 5%;
    background: var(--lx-light-bg);
    text-align: center;
}

.lx-industries-section h2 { color: var(--lx-dark); margin-bottom: 1rem; font-size: 2.2rem;}

/* --- FAQ --- */
.lx-faq {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 5%;
}

.lx-faq h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--lx-purple);
}

details {
    background: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    border: 1px solid #eee;
}

summary {
    padding: 1.2rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    list-style: none;
    color: var(--lx-dark);
}

summary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    color: var(--lx-magenta);
    font-weight: 700;
    font-size: 1.2rem;
}

details[open] summary::after { content: '-'; }

.faq-content {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    border-top: 1px solid #f0f0f0;
    margin-top: 0.5rem;
    padding-top: 1rem;
}

/* --- FINAL CTA --- */
.lx-final-cta {
    background: var(--lx-gradient);
    text-align: center;
    padding: 6rem 2rem;
    color: white;
}

.lx-final-cta h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.lx-final-cta p { font-size: 1.2rem; opacity: 0.9; }

.lx-btn-white {
    background: white;
    color: var(--lx-purple);
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    margin-top: 2rem;
    display: inline-block;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lx-btn-white:hover { transform: scale(1.05); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }

/* --- RESPONSIVE --- */
@media(max-width: 768px) {
    .lx-hero h1 { font-size: 2.2rem; }
    .lx-grid-2 { grid-template-columns: 1fr; }
    .lx-why-item { text-align: center; border-left: none; border-top: 4px solid var(--lx-orange); }
    .lx-intro { padding: 3rem 5%; }
    .lx-section { padding: 3rem 5%; }
    
    .table-heading { font-size: 1.8rem; }
    .livexpert-outcomes-table td, 
    .livexpert-outcomes-table th { padding: 1rem; font-size: 0.95rem; }
}/* End custom CSS */
/* Start custom CSS */.fade-in {
  animation: fadeIn 1s ease-in-out forwards;
  opacity: 0;
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.slide-up {
  animation: slideUp 1s ease-out forwards;
  transform: translateY(20px);
  opacity: 0;
}
@keyframes slideUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}



.hero-section {
  background: linear-gradient(135deg, #F4E3D7, #FFFFFF);
  text-align: center;
  padding: 60px 20px;
}
.hero-section h1 {
  font-size: 2.8rem;
  color: #1A1A1A;
}
.subheadline {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 20px auto;
  color: #56585E;
}
.btn-primary, .btn-secondary {
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  margin: 10px;
  font-weight: bold;
  transition: all 0.3s ease;
}
.btn-primary {
  background: #1A1A1A;
  color: #FFFFFF;
}
.btn-primary:hover {
  background: #56585E;
}
.btn-secondary {
  background: transparent;
  border: 2px solid #1A1A1A;
  color: #1A1A1A;
}
.btn-secondary:hover {
  background: #F4E3D7;
}
section {
  padding: 60px 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #1A1A1A;
}
ul, ol {
  color: #56585E;
  line-height: 1.6;
}
.services-grid, .use-case-grid, .benefits-grid {
  display: grid;
  gap: 20px;
}
.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.use-case-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.benefits-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
table {
  width: 100%;
  border-collapse: collapse;
}
table th, table td {
  border: 1px solid #ddd;
  padding: 12px;
}
table th {
  background-color: #F4E3D7;
}
.faq-item {
  margin-bottom: 20px;
}
.faq-item h3 {
  font-size: 1.2rem;
  color: #1A1A1A;
}/* End custom CSS */