:root {
  --background: #ffffff;
  --foreground: #0f172a;
  --border: #00000014;
  --input: #f8fafc;
  --primary: #6666b7;
  --primary-foreground: #ffffff;
  --secondary: #c0dbb65c;
  --secondary-foreground: #7a4c00;
  --muted: #f1f5f9;
  --muted-foreground: #9aa4b2;
  --success: #10b981;
  --success-foreground: #ffffff;
  --accent: #06b6d4;
  --accent-foreground: #022c33;
  --destructive: #ef4444;
  --destructive-foreground: #ffffff;
  --warning: #f59e0b;
  --warning-foreground: #081123;
  --card: #ffffff;
  --card-foreground: #0f172a;
  --sidebar: #f8fafc;
  --sidebar-foreground: #0f172a;
  --sidebar-primary: #fff3e8;
  --sidebar-primary-foreground: #6666b7;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --font-family-body: Inter;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
  width: 100%;
}

.export-wrapper {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  min-height: 812px;
  position: relative;
  font-family: var(--font-family-body);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  font-size: 15px;
  /*overflow-x: hidden;*/
}

.page {
  min-height: 812px;
  width: 100%;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-fluid {
  width: 100%;
  padding: 0 24px;
}

section {
  padding: 96px 0;
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  font-size: 14px;
  transition: all 0.2s ease;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background-color: var(--primary);
  opacity: 0.9;
  color: var(--primary-foreground);
}

.btn-outline {
  background-color: transparent;
  color: var(--foreground);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  background-color: transparent;
  color: var(--foreground);
  border-color: var(--primary);
}

.btn-light {
  background-color: var(--card);
  color: var(--foreground);
}

.text-center {
  text-align: center;
}

.grid {
  display: grid;
  gap: 32px;
}

.grid-2 {
  grid-template-columns: 1fr 1fr;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--muted-foreground);
  max-width: 720px;
  margin: 0 auto 48px;
}

.section-cta-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.muted-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  border-radius: var(--radius-xl);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.input-sim {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background-color: var(--input);
  color: var(--muted-foreground);
  font-size: 14px;
}

.textarea-sim {
  min-height: 112px;
}

.label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 14px;
  color: var(--foreground);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-value {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: var(--muted-foreground);
}

.card {
  background-color: var(--card);
  color: var(--card-foreground);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

/* Header Styles */
#site-header {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  background-color: var(--background);
  width: 100%;

  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--background); /* already present, ensure it's opaque */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); /* optional subtle shadow for depth */
}

#nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

#logo {
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  white-space: nowrap;
}

#nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

#nav-links a {
  text-decoration: none;
  color: var(--foreground);
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
  transition: color 0.2s ease;
}

#nav-links a:hover {
  color: var(--primary);
}

/* Hero Styles */
#hero {
  padding: 88px 0 96px;
  background: linear-gradient(
    135deg,
    var(--background) 0%,
    var(--secondary) 100%
  );
  width: 100%;
}

#hero-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

#hero-kicker {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

#hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.02;
  max-width: 640px;
}

#hero-subtitle {
  font-size: 20px;
  color: var(--muted-foreground);
  max-width: 620px;
}

#hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

#hero-stats {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hero-divider {
  width: 1px;
  height: 40px;
  background-color: var(--border);
}

#hero-visual .row {
  margin: 0;
}

#hero-visual [class*="col-"] {
  padding: 0 8px;
}

#hero-image-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 420px;
  background-color: var(--card);
  border: 1px solid var(--border);
  height: 100%;
}

#hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#hero-form-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 420px;
  height: 100%;
}

#hero-form-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

#hero-form-text {
  font-size: 14px;
  color: var(--muted-foreground);
  margin-bottom: 20px;
}

#hero-form-fields {
  display: grid;
  gap: 12px;
}

#hero-proof {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

/* Education Styles */
#education {
  background-color: var(--background);
  width: 100%;
}

#education-layout {
  align-items: start;
}

#education-layout [class*="col-"] {
  padding: 0 12px;
}

.education-panel {
  padding: 32px;
  height: 100%;
}

.edu-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.edu-stat-box {
  padding: 20px;
  background-color: #f0effb; /*var(--secondary);*/
  border-radius: var(--radius-md);
}

.edu-stat-box strong {
  display: block;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 8px;
}

.benefit-list {
  display: grid;
  gap: 16px;
}

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.benefit-item:last-child {
  border-bottom: none;
}

.benefit-copy h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.benefit-copy p {
  font-size: 14px;
  color: var(--muted-foreground);
}

/* Why Us Styles */
#why-us {
  background-color: var(--secondary);
  width: 100%;
}

#why-us-grid [class*="col-"] {
  padding: 0 12px;
}

.why-card {
  padding: 28px;
  height: 100%;
}

.icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--background);
  border-radius: 999px;
  margin-bottom: 16px;
  color: var(--primary);
}

.why-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 14px;
  color: var(--muted-foreground);
}

/* Portfolio Styles */
#portfolio {
  background-color: var(--background);
  width: 100%;
}

#portfolio-grid [class*="col-"] {
  padding: 0 12px;
}

.portfolio-card {
  overflow: hidden;
  height: 100%;
}

.portfolio-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  background-color: var(--muted);
}

.portfolio-content {
  padding: 24px;
}

.badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  background-color: var(--primary);
  color: var(--primary-foreground);
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 12px;
}

.portfolio-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.portfolio-content p {
  font-size: 14px;
  color: var(--muted-foreground);
  margin-bottom: 16px;
}

.result-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.result-pill {
  padding: 6px 10px;
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  border-radius: var(--radius-xl);
  font-size: 12px;
  font-weight: 500;
}

/* Pricing Styles */
#pricing {
  background-color: var(--secondary);
  width: 100%;
}

#pricing-grid [class*="col-"] {
  padding: 0 12px;
}

.pricing-card {
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
}

.pricing-card.popular {
  border-color: var(--primary);
  background-color: var(--card);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  padding: 5px 12px;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-radius: var(--radius-xl);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 24px;
  font-weight: 700;
}

.pricing-copy {
  font-size: 14px;
  color: var(--muted-foreground);
  margin: 8px 0 20px;
}

.pricing-price {
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-note {
  font-size: 13px;
  color: var(--muted-foreground);
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 14px;
}

/* Testimonials Styles */
#testimonials {
  background-color: var(--background);
  width: 100%;
}

#testimonial-grid [class*="col-"] {
  padding: 0 12px;
}

.testimonial-cards {
  margin: 0;
}

.testimonial-cards [class*="col-"] {
  padding: 0 8px;
}

.testimonial-card {
  padding: 28px;
  height: 100%;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--warning);
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 16px;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  gap: 14px;
  align-items: center;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  object-fit: cover;
}

.author-info h4 {
  font-size: 16px;
  font-weight: 600;
}

.author-info p {
  font-size: 14px;
  color: var(--muted-foreground);
}

.video-card {
  padding: 28px;
  background-color: var(--foreground);
  color: var(--background);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.video-thumb {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin: 20px 0;
  display: block;
}

.video-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.video-meta p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.76);
}

/* Trust Styles */
#trust-band {
  padding: 80px 0;
  background-color: var(--card);
  width: 100%;
}

#trust-grid [class*="col-"] {
  padding: 0 12px;
}

.trust-card {
  padding: 32px;
  height: 100%;
}

.trust-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.trust-list {
  display: grid;
  gap: 14px;
}

.trust-list-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.industry-tag {
  padding: 8px 12px;
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  border-radius: var(--radius-xl);
  font-size: 13px;
  font-weight: 500;
}

.process-steps {
  display: grid;
  gap: 14px;
  margin-top: 12px;
}

.process-step {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background-color: var(--primary);
  color: var(--primary-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

/* FAQ Styles */
#faq {
  background-color: var(--secondary);
  width: 100%;
}

#faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 24px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.faq-answer {
  font-size: 14px;
  color: var(--muted-foreground);
}

/* Closing Styles */
#closing-band {
  padding: 88px 0 0;
  background-color: var(--background);
  width: 100%;
}

#closing-card {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  margin: 0;
  width: 100%;
}

#closing-card h2 {
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 14px;
}

#closing-card p {
  font-size: 17px;
  color: var(--primary-foreground);
  opacity: 0.9;
  max-width: 620px;
}

#closing-points {
  display: grid;
  gap: 12px;
}

.closing-point {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 14px;
  white-space: nowrap;
}

/* Form Styles */
#final-form-section {
  padding-top: 32px;
  width: 100%;
}

#final-form-shell {
  max-width: 920px;
  margin: 0 auto;
  padding: 36px;
  width: 100%;
}

#final-form-shell h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}

#final-form-shell p {
  font-size: 16px;
  color: var(--muted-foreground);
  margin-bottom: 28px;
  text-align: center;
}

#final-form-fields {
  display: grid;
  gap: 16px;
}

#form-submit {
  width: 100%;
  margin-top: 8px;
}

/* Footer Styles */
#site-footer {
  background-color: var(--card);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
  width: 100%;
}

#footer-grid {
  margin-bottom: 40px;
}

#footer-grid [class*="col-"] {
  padding: 0 12px;
}

#footer-brand p {
  color: var(--muted-foreground);
  margin-top: 16px;
  max-width: 420px;
}

.footer-links h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
  display: grid;
  gap: 12px;
  padding: 0;
}

.footer-links a {
  color: var(--muted-foreground);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

#footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border);
  color: var(--muted-foreground);
  font-size: 14px;
  text-align: center;
}

.accordion-item.card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  background-color: var(--card);
}
.accordion-button:not(.collapsed) {
  background-color: #c0dbb6; /*var(--secondary);*/
  color: var(--foreground);
}
.accordion-button:focus {
  box-shadow: none;
  border-color: var(--border);
}

/* Footer Dark Theme */
#site-footer {
  background-color: #1f1f1f;  /* dark gray */
  border-top: none;
  color: #e0e0e0;
}

#site-footer #logo {
  color: white !important;     /* override any existing logo color */
}

#site-footer #logo img {
  filter: brightness(0) invert(1); /* if your logo is dark, this makes it white; remove if logo already visible */
}

#site-footer h4 {
  color: white;
  font-weight: 600;
  margin-bottom: 16px;
}

#site-footer a {
  color: #e0e0e0;
}

#site-footer a:hover {
  color: var(--primary);
}

#footer-bottom {
  border-top-color: #444 !important;
  color: #aaa !important;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }
  
  #hero-title {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 540px;
    padding: 0 16px;
  }
  
  section {
    padding: 64px 0;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .section-subtitle {
    font-size: 16px;
    margin-bottom: 32px;
  }
  
  #hero-title {
    font-size: 36px;
  }
  
  #hero-subtitle {
    font-size: 18px;
  }
  
  #hero-stats {
    gap: 16px;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .hero-divider {
    display: none;
  }
  
  .edu-stats {
    grid-template-columns: 1fr;
  }
  
  #closing-card {
    padding: 32px 24px;
  }
  
  #closing-card h2 {
    font-size: 28px;
  }
  
  .pricing-price {
    font-size: 32px;
  }
  
  /* Fix for Bootstrap row margins causing overflow */
  .row {
    margin-left: 0;
    margin-right: 0;
  }
  
  [class*="col-"] {
    padding-left: 8px;
    padding-right: 8px;
  }
  
  /* Ensure no horizontal scroll */
  body, html {
    overflow-x: hidden;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 12px;
  }
  
  #nav-container {
    flex-direction: column;
    gap: 16px;
  }
  
  #nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  
  #hero-actions {
    justify-content: center;
  }
  
  .section-cta-row {
    flex-direction: column;
    align-items: center;
  }
  
  .section-cta-row .btn {
    width: 100%;
  }
  
  #hero-visual [class*="col-"] {
    padding: 0 4px;
  }
  
  #hero-form-card {
    padding: 20px;
  }
  
  .testimonial-cards [class*="col-"] {
    padding: 0 4px;
  }
  
  .video-meta {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .closing-point {
    white-space: normal;
  }
}

/* Remove default owl dots background */
.owl-theme .owl-dots .owl-dot span {
  background: var(--border-light);
}
.owl-theme .owl-dots .owl-dot.active span {
  background: var(--primary);
}

/* Style navigation arrows */
.owl-theme .owl-nav [class*='owl-'] {
  background: var(--primary);
  color: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.owl-theme .owl-nav [class*='owl-']:hover {
  background: var(--brand-secondary);
}

select.input-sim {
  appearance: none; /* removes default arrow, you can add a custom one */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px; /* space for arrow */
}

/* Introduction Section Enhancements */

#introduction {
  background-color: var(--secondary);
  width: 100%;
}
#introduction .benefit-list > div {
  transition: transform 0.2s ease;
}

#introduction .benefit-list > div:hover {
  transform: translateX(5px);
}

#introduction .icon-wrap {
  background-color: var(--accent-soft);
  transition: all 0.2s ease;
}

#introduction .benefit-list > div:hover .icon-wrap {
  background-color: var(--primary);
}

#introduction .benefit-list > div:hover .icon-wrap iconify-icon {
  color: white !important;
}

#introduction img {
  transition: transform 0.5s ease;
}

#introduction img:hover {
  transform: scale(1.02);
}