.section-hero {
  padding: 4rem 1rem;
  background-color: #fff;
  color: #000;
  padding-top: 130px;
}

.section-hero .section-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  padding-left: 5px;
}

.section-hero .section-badge {
  display: inline-block;
  padding: 0.2rem 1rem;
  background-color: #f0eeee;
  color: #000000;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 100;
  margin-bottom: 1px;
  border: 0.25px solid #f0eeee;
}

.section-title {
  font-family: 'Manrope','Inter';
  font-size: 64px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 18px;
  color: #555;
  max-width: 600px;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.section-image img {
  max-width: 100%;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.section-showcase {
  background-color: #ffffff; /* placeholder for background image */
  padding: 100px 1rem 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 25px;
  overflow: visible;
}

.showcase-container {
  max-width: 1200px;
  width: 100%;
  border-radius: 25px;
}

.showcase-container img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  z-index: 2;
 
}

/* use case section */
.use-cases-section {
  padding: 4rem 1rem;
  background-color: #ffffff;
}

.use-cases-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.use-cases-heading {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 2rem;
}

.use-cases-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.use-case-item {
  flex: 1;
  min-width: 250px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.use-case-icon {
  width: 40px;
  height: 40px;
  font-size: 18px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}


/*features section */
.features-section {
  background-color: #fff;
  padding: 4rem 1rem;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.features-heading {
  font-size: 54px;
  font-weight: 600;
  margin-bottom: 2rem;
}

.features-tabs {
  display: flex;
  gap: 1rem;
  background-color: #f5f5f5;
  padding: 1rem;
  border-radius: 16px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.feature-tab {
  background-color: transparent;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 520; /* Fixed: 800 is valid; 800px was invalid */
  transition: background-color 0.2s ease;
  color: #000000;
  font-size: 15px;
}

.feature-tab:hover {
  background-color: #e0e0e0;
}

.feature-tab.active {
  background-color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.feature-content-wrapper {
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: 16px;
}

.feature-content {
  display: none;
}

.feature-content.active {
  display: block;
}

/* NEW: Side-by-side layout */
.feature-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

/* Left-hand side text block */
.feature-text {
  flex: 1;
  min-width: 300px;
  align-items: flex-start;
}

.feature-text h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-text p {
  max-width: 800px;
  line-height: 1.6;
  color: #333;
}

/* Right-hand side image block */
.feature-image {
  flex: 1;
  min-width: 250px;
  text-align: right;
}

.feature-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}
.feature-icon {
  width: 60px;
  height: 60px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}

.feature-icon i {
  font-size: 23px;
  color: #000000;
}
