:root {
  --primary-orange: #FF7A00;
  --text-dark: #111111;
  --text-light: #666666;
  --bg-dark: #0F0F0F;
  --bg-light: #FFFFFF;
  --bg-gray: #F9F9F9;
  --accent-green: #5B8C51;
  --border-color: #E5E5E5;
  --font-main: 'Inter', sans-serif;
  --max-width: 1200px;
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-light);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  z-index: 1000;
  backdrop-filter: blur(5px);
  /* border-bottom: 1px solid rgba(0,0,0,0.05); */

      transition: 
        top 0.3s ease,
        box-shadow 0.3s ease,
        border-bottom 0.3s ease;
    /* z-index: 1000; */
}

.logo {
  font-weight: 800;
  font-size: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1002; /* Above mobile menu */
  position: relative;
}

.logo-icon {
  width: 30px;
  height: 30px;
  background: var(--text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
}

/* Desktop Nav */
.desktop-nav ul {
  display: flex;
  gap: 30px;
}

.desktop-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  transition: color 0.3s;
}

.desktop-nav a:hover {
  color: var(--primary-orange);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-orange);
  color: white;
}

.btn-primary:hover {
  background-color: #e66e00;
  transform: translateY(-1px);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  font-size: 24px;
  cursor: pointer;
  z-index: 1002;
  color: var(--text-dark);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  background: white;
  z-index: 1003; /* Higher than header */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Push button to bottom */
  align-items: flex-start;
  transform: translateX(-100%); /* Slide from left */
  transition: transform 0.3s ease-in-out;
  /* padding: 80px 30px 40px;  */
  /* Top padding for logo space */
  padding: 20px 20px 40px;
  box-shadow: 5px 0 20px rgba(0,0,0,0.1);
}

.mobile-nav-overlay.active {
  transform: translateX(0);
}

.mobile-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1001;
  display: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-backdrop.active {
  display: block;
  opacity: 1;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  /* gap: 25px; */
  gap: 16px;
  text-align: left;
  width: 100%;
}

.mobile-nav-links a {
  font-size: 18px;
  font-weight: 500;
  color: #666666; /* Gray color as requested */
  display: block;
  padding-bottom: 10px;
  /* border-bottom: 1px solid #f0f0f0; */
}

.mobile-nav-links a:hover {
  color: var(--primary-orange);
  border-color: var(--primary-orange);
}

.mobile-menu-close {
  /* position: absolute; */
  top: 25px;
  right: 25px;
  font-size: 24px;
  color: #999;
  cursor: pointer;
}

/* Hero Section */
.hero {
  text-align: center;
  /* padding: 80px 0 60px; */
    padding: 80px 0 20px;
}

.hero h1 {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.highlight {
  color: var(--primary-orange);
}

.hero-sub {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.hero-desc {
  max-width: 700px;
  margin: 0 auto 40px;
  color: var(--text-light);
  font-size: 16px;
}

.hero-desc strong {
  color: var(--text-dark);
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}

.hero-cta-text {
  margin-top: 60px;
  /* font-size: 20px; */
  font-size: 26px;
  color: var(--text-light);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-text strong {
  color: var(--primary-orange);
}

/* Dark Cards Section */
.dark-cards {
  background-color: var(--bg-dark);
  padding: 60px 0;
  margin: 40px 0;
  border-radius: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px; /* For borders */
  overflow: hidden;
}

.dark-card {
  /* background-color: #1a1a1a; */
  padding: 40px 20px;
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.dark-card span {
  font-style: italic;
  /* font-family: serif; */
  color: #fff;
  margin-bottom: 10px;
  font-size: 18px;
}

.dark-card h3 {
  color: var(--primary-orange);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

/* Features Grid */
.features-section {
  padding: 80px 0;
  text-align: center;
  scroll-margin-top: 80px;
}

.section-label {
  color: var(--primary-orange);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: block;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.section-desc {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 60px;
  font-size: 16px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.feature-card {
  background: var(--bg-gray);
  padding: 30px;
  border-radius: 8px;
  text-align: left;
  /* transition: transform 0.3s; */
}

.feature-card:hover {
  /* transform: translateY(-5px); */
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: 1px solid #FFEFE5;
}

.icon-box {
  width: 40px;
  height: 40px;
  background: #FFEFE5;
  color: var(--primary-orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 18px;
}

.feature-card p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.feature-bottom-text {
  /* font-size: 20px; */
  font-size: 26px;
  font-weight: 700;
  margin-top: 40px;
}

/* Intelligence Engine (Dark Section) */
.engine-section {
  background-color: var(--bg-dark);
  color: white;
  padding: 100px 0;
  scroll-margin-top: 80px;
}

.engine-section .section-title {
  color: white;
}

.engine-list {
  max-width: 900px;
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* .engine-item {
  background: #1A1A1A;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.engine-item:hover{
    border: 1px solid var(--primary-orange);
} */

/* .engine-item {
  background: #1A1A1A;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;

  transition: border-color 0.3s ease;
}

.engine-item:hover {
  border-color: var(--primary-orange);
} */

.engine-item {
  background: #1A1A1A;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;

  transition: 
    border-color 0.3s ease,
    background-color 0.3s ease;
}

.engine-item:hover {
  border-color: var(--primary-orange);
  background-color: rgba(255, 140, 0, 0.0025); /* very light */
}


.engine-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  margin-right: 30px;
  
}


.engine-icon-new{
    position: relative;
}

.engine-icon-new::after {
    content: "";
    width: 0.9px;
    height: 90px;
    background-color: var(--primary-orange);
    position: absolute;
    top: 40px;
    bottom: 25px;
    /* z-index: -26; */
}

.engine-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-num {
  font-size: 12px;
  color: var(--primary-orange);
  font-weight: 700;
}

.engine-content p {
  color: #999;
  font-size: 14px;
}

.engine-item.green-card {
  background: linear-gradient(180deg, #1e2e1e 0%, #111 100%);
  border-color: #2a4a2a;
  display: block;
  position: relative;
  margin-top: 28px;
}

.green-card .engine-icon {
  background: var(--accent-green);
  margin-bottom: 20px;
}

.green-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 30px;
}

.stat-card {
  background: rgba(255,255,255,0.05);
  padding: 15px;
  border-radius: 8px;
}

.stat-card h4 {
  font-size: 13px;
  margin-bottom: 5px;
  color: #ddd;
}

.stat-card p {
  font-size: 11px;
  color: #777;
}

/* Comparison Section */
.comparison-section {
  padding: 100px 0;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  /* border: 1px solid #eee; */
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;

  width: 80%;
  margin: 0 auto 20px;
}

.comp-left {
  background: white;
  padding: 40px;
}

.comp-right {
  background: var(--bg-dark);
  color: white;
  padding: 40px;
}

.comp-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;
  color: #999;
}

.comp-right .comp-label {
  color: var(--primary-orange);
}

.comp-text {
  font-size: 18px;
  font-weight: 500;
}

.intelligence-layer-box {
  /* background: #FFF5EB;
  padding: 40px;
  text-align: center;
  border-radius: 12px;
  margin-top: 40px;
  font-size: 20px;
  font-weight: 500; */

  background: #FFF5EB;
  padding: 40px;
  text-align: center;
  border-radius: 12px;
  margin-top: 40px;
  font-size: 20px;
  font-weight: 500;

  max-width: 683px;
  margin: 0 auto;
  margin-top: 60px;
}

.intelligence-layer-box strong {
  color: var(--primary-orange);
}

/* What XON Is */
.xon-is-section {
  padding: 80px 0;
}

.is-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.is-card {
  border-radius: 16px;
  padding: 40px;
}

.is-card.dark {
  background: var(--bg-dark);
  color: white;
}

.is-card.light {
  background: white;
  border: 1px solid #eee;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 15px;
}

.check-icon {
  color: var(--accent-green);
}

.cross-icon {
  color: #ccc;
}

/* Impact Section */
.impact-section {
  padding: 80px 0;
  text-align: center;
  scroll-margin-top: 80px;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.impact-card {
  background: white;
  padding: 40px 20px;
  border: 1px solid #eee;
  border-radius: 12px;
  transition: all 0.3s;
}

.impact-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.impact-icon {
  width: 50px;
  height: 50px;
  background: #FFF5EB;
  color: var(--primary-orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
}

/* Case Study */
.case-study-section {
  padding: 80px 0;
  background: #FAFAFA;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab {
  padding: 10px 20px;
  border-radius: 20px;
  border: 1px solid #ddd;
  background: white;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s;
}

.tab:hover {
  border-color: var(--primary-orange);
  color: var(--primary-orange);
}

.tab.active {
  background: var(--primary-orange);
  color: white;
  border-color: var(--primary-orange);
}

.case-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  display: none; /* Hidden by default, JS will toggle */
  animation: fadeIn 0.5s ease;
}

.case-card.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.case-header {
  background: var(--bg-dark);
  color: white;
  padding: 30px 40px;
}

.case-body {
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.case-list li {
  margin-bottom: 15px;
  font-size: 14px;
  color: #555;
  display: flex;
  gap: 10px;
}

.case-list li::before {
  content: "›";
  color: var(--primary-orange);
  font-weight: bold;
}

.impact-box {
  background: #F5F9F5;
  padding: 30px;
  border-radius: 12px;
}

.impact-box h4 {
  color: var(--accent-green);
  margin-bottom: 15px;
}

/* Footer Dark Section */
.footer-dark {
  background: var(--bg-dark);
  color: white;
  padding: 100px 0;
  text-align: center;
  scroll-margin-top: 80px;
}

.storm-tags {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
}

.storm-tag {
  border: 1px solid #333;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.quote-box {
  background: #1A1A1A;
  max-width: 800px;
  margin: 60px auto;
  padding: 40px;
  border-radius: 12px;
  border: 1px solid #333;
}

.quote-text {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-orange);
  margin-bottom: 10px;
}

/* Transform Section (New) */
.transform-section {
  background-color: white;
  padding: 100px 0;
  text-align: center;
}

.transform-section .section-title {
  color: var(--text-dark);
}

/* Transformation Cards */
.transform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.transform-card {
  background: linear-gradient(135deg, #FF9933 0%, #FF6B00 100%); /* Adjusted gradient */
  padding: 30px;
  border-radius: 12px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 10px 20px rgba(255, 122, 0, 0.15); /* Added shadow */
}

.trans-arrow {
  background: white;
  color: var(--primary-orange);
  /* width: 30px;
  height: 30px; */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* font-size: 14px; */
  font-size: 22px;
}

/* Final Footer */
.main-footer {
  background: var(--bg-dark);
  color: white;
  padding: 80px 0 40px;
  border-top: 1px solid #222;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.footer-form {
  background: white;
  padding: 40px;
  border-radius: 16px; /* Increased radius */
  color: var(--text-dark);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2); /* Added shadow */
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-orange);
}

/* New Footer Links Section */
.footer-links-section {
  padding: 40px 0;
  /* border-top: 1px solid #222; */
  border-bottom: 1px solid #222;
  margin-top: 80px;
}

.footer-links-list {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.footer-links-list a {
  color: #999;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links-list a:hover {
  color: white;
}

.footer-bottom-row {
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-logo-area {
  max-width: 300px;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-orange);
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-tagline {
  color: #999;
  font-size: 14px;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a {
  color: #999;
  font-size: 18px;
  transition: color 0.3s;
}

.social-links a:hover {
  color: white;
}

.footer-legal {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.footer-legal a {
  color: #666;
  font-size: 12px;
}

.footer-right-area {
  text-align: right;
  color: #999;
  font-size: 12px;
}

.footer-right-area p {
  margin-bottom: 5px;
}

.perfect-storm-sub-detail{
  color: #999;
  margin-bottom: 20px;
  font-size: 20px;
}

.contact-img-logo {
  height: 120px;
  width: 120px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .header-right .btn {
    display: none; /* Hide header button on mobile, show in menu instead */
  }

  /* Typography Adjustments */
  .hero h1 {
    font-size: 32px; /* Reduced from 36px */
  }
  
  .hero-sub {
    font-size: 16px; /* Reduced from 18px */
  }
  
  .section-title {
    /* font-size: 28px;  */
    /* Reduced from 42px */

    font-size: 20px;
  }
  
  .feature-bottom-text {
    /* font-size: 18px; */
    font-size: 16px;
  }
  
  .footer-dark h2 {
    /* font-size: 28px; */
    font-size: 22px;
  }
  
  .quote-text {
    font-size: 14px;
  }
  
  /* Layout Adjustments */
  .dark-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    background: transparent;
    padding: 20px 0;
  }
  
  .dark-card {
    border-radius: 12px;
    border: none !important; /* Remove the side borders */
    background-color: #1a1a1a;
    margin-bottom: 10px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .engine-item {
    flex-direction: column;
  }
  
  .green-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .comparison-row {
    grid-template-columns: 1fr;
    border: none;
    gap: 20px;
    box-shadow: none;
    width: unset;
    margin: 0px;
  }
  
  .comp-left, .comp-right {
    border-radius: 12px;
    border: 1px solid #eee;
  }
  
  .comp-right {
    border: none;
  }
  
  .is-grid {
    grid-template-columns: 1fr;
  }
  
  .impact-grid {
    grid-template-columns: 1fr;
  }
  
  .case-body {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 20px;
  }
  
  .case-header {
    padding: 20px;
  }
  
  .storm-tags {
    flex-direction: column;
    align-items: center;
  }
  
  .transform-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-links-list {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .footer-bottom-row {
    flex-direction: column;
    gap: 16px;
    align-items: anchor-center;
  }
  
  .footer-right-area {
    text-align: left;
  }

  .social-links {
    /* display: flex;
    gap: 20px; */
    justify-content: center;
  }

  .footer-logo-icon{
      margin: 20px auto;
  }

  .text-align-footer-content-center{
    text-align: center;
  }

  .request-form-logo{
    justify-content: center;
  }

  .mobile-nav-links a {
    font-size: 14px;
    font-weight: 400;
    padding-bottom: 6px;
  }

  .engine-content h3 {
    font-size: 14px;
  }

  .section-label {
    margin-bottom: 4px;
  }

  .check-list li {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .is-grid {
    gap: 20px;
  }

  .perfect-storm-sub-detail{
    font-size: 14px;
    margin-bottom: 10px;
  }

  .contact-img-logo {
    height: 90px;
    width: 90px;
  }
}

.request-demo-btn {
    padding: 8px 14px !important;
    border-radius: 6px;
}

.request-form-logo{
  z-index: 999 !important;
}

.text-align-left{
  text-align: left;
}

.icon-arrow-ryt {
  color: #0F0F0F;
}

.colr-white {
  color: #FFF5EB;
}


.contect-main-title-heading{
  font-size: 36px; 
  font-weight: 800;
  margin-bottom: 20px;
}

.contect-main-title-heading-second{
  color: var(--primary-orange); 
  font-size: 24px;
  margin-bottom: 30px;
}

.xon-learning-subtitle {
  font-size: 16px;
  color: #999; 
  margin-top: 10px;
}

.case-study-tab-title{
  font-size: 24px;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .contect-main-title-heading{
    font-size: 16px;
    margin-bottom: 6px;
  }

  .contect-main-title-heading-second{
    font-size: 16px;
    margin-bottom: 4px;
  }

  .engine-section{
    padding: 40px 0;
  }

  .xon-learning-subtitle{
    font-size: 14px;
  }

  .engine-list {
    margin: 30px auto 0;
  }

  .storm-tags{
    gap: 12px;
    margin: 20px 0;
  }

  .case-study-tab-title{
    font-size: 20px;
  }

}

/* Perfect Storm Section Style css */
.perfect-dtorm-desc{
  color: #999;
  font-size: 20px;
  max-width:988px;
  margin: auto;
  margin-top: 40px;
}

.perfect-storm-list{
  text-align: left; 
  max-width: 600px; 
  margin: 20px auto;
  color: #ccc; 
  font-size: 14px; 
  list-style: disc; 
  padding-left: 20px; 
  font-style: italic;
}

.transform-title-heading{
  font-size: 20px;
}

.comparison-title-part-section{
    text-align: center;
    margin-bottom: 60px;
}

.m-b-60{
  margin-bottom: 60px;
}

.engine-sec{
  display: flex;
}

.sub-title-heading-analytics{
  color: #ccc;
  font-size: 16px;
}

@media (max-width: 768px) {
  .hero{
    padding: 20px 0 20px;
  }

  .perfect-dtorm-desc{
    font-size: 14px;
  }

  .perfect-storm-list{
    text-align: center;
  }

  .hero-cta-text{
    margin-top: 30px;
    font-size: 16px;
  }


  .transform-card{
    font-size: 14px;
  }

  .trans-arrow{
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .transform-title-heading{
    font-size: 14px;
  }


  .feature-card{
    text-align: center;
  }

  .icon-box{
    margin: 0 auto 20px;
  }

  .dark-cards{
    margin: 0px;
  }

  .features-section{
    padding: 40px 0;
  }

  .comparison-section{
    padding: 40px 0;
  }

  .comparison-title-part-section{
    margin-bottom: 20px;
  }

  .comp-text{
    /* font-size: 16px; */
    font-size: 14px;
  }

  .intelligence-layer-box{
    font-size: 16px;
    margin-top: 40px;
  }

  .xon-is-section{
    /* padding: 40px 0; */
     padding: 10px 0;
  }

  .impact-section{
    padding: 40px 0;
  }

  .case-study-section{
    padding: 40px 0;
  }

  .footer-dark{
    padding: 40px 0;
  }

  .transform-section {
    padding: 40px 0;
  }

  .m-b-60{
    margin-bottom: 0px;
  }

  .quote-box{
    margin: 20px auto;
  }

  .main-footer{
    padding: 40px 0 40px;
  }

  .footer-links-section{
    margin-top: 0px;
  }

  .engine-icon-new{
    display: none;
  }

  .hero-desc {
    font-size: 14px;
  }

  .dark-card span {
    font-size: 14px;
  }

  .dark-card h3 {
    font-size: 14px;
  }

  .section-desc {
    margin: 0 auto 28px;
    font-size: 14px;
  }

  .feature-card p{
    font-size: 14px;
  }

  .section-title{
    margin-bottom: 10px;
  }

  .impact-grid {
    gap: 20px;
  }

  .sub-title-heading-analytics{
    font-size: 14px;
  }

}

.outcome-analytics-part{
  display: flex;
}

.color-green{
  color: var(--accent-green);
}


.mobile-heaer-part{
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 40px;
  align-items: center;
}

.colr-black{
  color: #0F0F0F;
}


.quote-box {
  position: relative;
  padding: 40px 50px;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    #2b160d 0%,
    #1a0d08 50%,
    #0f0704 100%
  );
  box-shadow:
    0 0 0 1px rgba(255, 140, 80, 0.25),
    0 0 40px rgba(255, 110, 60, 0.15),
    inset 0 0 25px rgba(255, 120, 70, 0.08);
  max-width: 900px;
  /* margin: 0 auto; */
      margin: 60px auto;
}

.quote-box::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255, 140, 90, 0.45),
    rgba(255, 90, 40, 0.15),
    rgba(255, 140, 90, 0.45)
  );
  z-index: -1;
}

.quote-text {
  color: #ffffff;
  font-size: 28px;
  line-height: 1.45;
  text-align: center;
  font-weight: 500;
}

.quote-text span {
  color: #ff7a2f;
  font-weight: 600;
}

.green-card::before{
    content: "";
    height: 49px;
    width: 1px;
    background-color: green;
    display: flex;
    position: absolute;
    top: -50px;
    left: 19px;
}

header.sticky-show {
    top: 0;
    border-bottom: none; /* remove border */
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08); /* bottom shadow */
}



