/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "DM Sans", sans-serif;
  color: #ffffff;
  overflow-x: hidden;
}

.main_div {
  background: linear-gradient(135deg, #9333ea 0%, #4318ff 100%);
}

/* Header container - matches React version exactly */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 16px;
  position: relative;
}

/* Responsive padding - matches React version */
@media (min-width: 640px) {
  .header {
    padding: 16px 32px;
  }
}

@media (min-width: 768px) {
  .header {
    padding: 24px 64px;
  }
}

@media (min-width: 1024px) {
  .header {
    padding: 24px 96px;
  }
}

@media (min-width: 1280px) {
  .header {
    padding: 24px 192px;
  }
}

/* Logo - matches React version */
.logo {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #ffffff;
}

@media (min-width: 640px) {
  .logo {
    font-size: 20px;
  }
}

@media (min-width: 768px) {
  .logo {
    font-size: 24px;
  }
}

/* Desktop Navigation - matches React version */
.desktop-nav {
  display: none;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }
}

@media (min-width: 1024px) {
  .desktop-nav {
    gap: 32px;
  }
}

/* Navigation Links - matches React version exactly */
.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 20px;
}

@media (min-width: 768px) {
  .nav-link {
    font-size: 12px;
  }
}

@media (min-width: 1024px) {
  .nav-link {
    font-size: 20px;
  }
}

@media (min-width: 1280px) {
  .nav-link {
    font-size: 20px;
  }
}

/* Desktop Button - matches React version exactly */
.desktop-button {
  display: none;
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 8px 12px;
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
  align-items: center;
  gap: 8px;
  max-width: 158px;
  height: 40px;
  justify-content: center;
}

@media (min-width: 768px) {
  .desktop-button {
    display: flex;
  }
}

@media (min-width: 1024px) {
  .desktop-button {
    font-size: 14px;
    height: 40px;
    max-width: 140px;
  }
}

@media (min-width: 1280px) {
  .desktop-button {
    font-size: 14px;
    height: 48px;
    max-width: 230px;
    padding: 0px 27px;
  }
}

/* Mobile Menu Button - matches React version */
.mobile-menu-btn {
  display: block;
  color: #ffffff;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Mobile Navigation - matches React version */
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(4px);
  z-index: 50;
}

.mobile-nav.active {
  display: block;
}

@media (min-width: 768px) {
  .mobile-nav {
    display: none !important;
  }
}

/* Mobile Navigation Content - matches React version */
.mobile-nav-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 0;
  gap: 16px;
}

/* Mobile Navigation Links - matches React version */
.mobile-nav-link {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

@media (min-width: 640px) {
  .mobile-nav-link {
    font-size: 16px;
  }
}

/* Mobile Button - matches React version exactly */
.mobile-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  margin-top: 16px;
  border-radius: 10px;
  font-size: 12px;
  height: 40px;
  border: none;
  color: #ffffff;
  background: linear-gradient(135deg, #4318ff 0%, #9333ea 100%);
  cursor: pointer;
}

@media (min-width: 640px) {
  .mobile-button {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* Icon styles - matches React version */
.desktop-button i,
.mobile-button i {
  font-size: 12px;
}

@media (min-width: 1024px) {
  .desktop-button i {
    font-size: 16px;
  }
}

@media (min-width: 1280px) {
  .desktop-button i {
    font-size: 16px;
  }
}

@media (min-width: 640px) {
  .mobile-button i {
    font-size: 16px;
  }
}

/* Hero Banner Section */

/* Reset and base styles */

/* Feature Section */
.feature-section {
  background: #f7faff;
  padding: 64px 0 72px 0;
  width: 100%;
}

.feature-section-heading {
  text-align: center;
  margin-bottom: 48px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 2.2rem;
  font-weight: 800;
  color: #181c32;
  letter-spacing: -0.5px;
  font-family: "DM Sans", sans-serif;
}

.feature-section-heading-icon {
  color: #5a6bfa;
  display: flex;
  align-items: center;
}

.feature-section-heading-icon i {
  font-size: 2.2rem;
}

.feature-section-heading-text {
  color: #020817;
  font-weight: 700;
  font-size: 36px;
  font-family: "DM Sans", sans-serif;
}

@media (max-width: 600px) {
  .feature-section-heading,
  .feature-section-heading-text {
    font-size: 1.25rem;
  }
  .feature-section-heading-icon i {
    font-size: 1.25rem;
  }
}

.feature-cards-container {
  display: flex;
  flex-direction: row;
  gap: 40px;
  justify-content: center;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1023px) {
  .feature-cards-container {
    flex-direction: column;
    gap: 28px;
    align-items: center;
  }
}
.mind-icon-image {
  width: 27px;
  height: 27px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
}
.black-icon-image {
  width: 20px;
  height: 20px;
}
.icon-image {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
}
.feature-card {
  background: #fff;
  border-radius: 20px;
  padding: 45px 32px 45px 32px;
  border: 2px solid #e2e8f0;
  width: 384px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin-bottom: 22px;
  font-size: 2.5rem;
  color: #fff;
  box-shadow: 0 2px 12px rgba(44, 62, 80, 0.1);
}
.nlp-card{
    background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
}
.intelligent-card{
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
}
.optimized-card{
    background: linear-gradient(135deg, #22C55E 0%, #14B8A6 100%);
}
.optimized-badge{
    background-color: #DCFCE7; 
    color: #15803D;
}
.ml-badge{
    background-color: #EDE9FE; 
    color: #6D28D9;
}
.grocery-card{  
    background: linear-gradient(135deg, #F0FDF4 0%, #F0F9FF 100%);
}

.feature-card-icon i {
  font-size: 2rem;
  color: #fff;
}
.format-card{   
    background: linear-gradient(135deg, #F8FAFC 0%, #F3F0FF 100%);
}
.store-card{    
    background: linear-gradient(135deg, #F8FAFC 0%, #F3F0FF 100%);
}
.market-card{    
    background: linear-gradient(135deg, #FEF6F6 0%, #FFF7ED 100%);
}


.feature-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.feature-card-title {
  font-weight: 400;
  color: #020817;
  text-align: center;
  margin: 0;
  line-height: 1.3;
  font-family: "DM Sans", sans-serif;
}

.feature-card-description {
  font-size: 16px;
  color: #64748b;
  text-align: center;
  margin: 0;
  line-height: 1.6;
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
}

.feature-card-badge {
  display: inline-block;
  padding: 5px 18px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 400;
  align-self: center;
  margin-top: 14px;
  letter-spacing: 0.01em;
  font-family: "DM Sans", sans-serif;
}

@media (max-width: 1100px) {
  .feature-card {
    width: 95vw;
    max-width: 370px;
  }
}

@media (max-width: 600px) {
  .feature-section {
    padding: 32px 0 32px 0;
  }
  .feature-card {
    padding: 22px 10px 18px 10px;
    width: 98vw;
    max-width: 98vw;
  }
  .feature-card-title {
    font-size: 1.08rem;
  }
  .feature-card-description {
    font-size: 0.97rem;
  }
  .feature-card-icon,
  .feature-card-icon i {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
  }
  .feature-card-badge {
    font-size: 0.85rem;
    padding: 4px 12px;
  }
}

/* Reset and base styles */

/* Feature Showcase Section */
.feature-showcase {
  width: 100%;
  min-height: 540px;
  height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, #7f3cff 0%, #3b82f6 100%);
  padding: 0;
  box-sizing: border-box;
}

.feature-showcase-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1300px;
  gap: 0;
}

.feature-showcase-image-container {
  flex: 1 1 55%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
}

.feature-showcase-image {
  width: 540px;
  max-width: 95%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 0 64px 8px #fff, 0 8px 64px 0 rgba(80, 0, 200, 0.18);
  background: #fff;
}

.feature-showcase-content {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 48px;
  min-width: 0;
}

.feature-showcase-title {
  color: #fff;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px;
  text-align: left;
  letter-spacing: -1px;
}

.feature-showcase-subtitle {
  color: #e0e0ff;
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 36px;
  text-align: left;
  line-height: 1.5;
  max-width: 480px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 22px 24px;
  width: 100%;
  max-width: 520px;
}

.feature-button {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  color: #181c32;
  border-radius: 16px;
  font-weight: 600;
  font-size: 1.08rem;
  min-height: 70px;
  padding: 0 24px;
  box-shadow: 0 2px 12px rgba(44, 62, 80, 0.06);
  border: none;
}

.feature-button-inactive {
  background: #fff;
  color: #181c32;
}

.feature-button-active {
  background: #000;
  color: #fff;
}

.feature-button .feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.feature-label {
  font-size: 1.01rem;
  font-weight: 500;
  line-height: 1.3;
  text-align: left;
  flex: 1;
  white-space: normal;
}

@media (max-width: 1200px) {
  .feature-showcase-image {
    width: 420px;
  }
  .feature-showcase-title {
    font-size: 2.1rem;
  }
}

@media (max-width: 900px) {
  .feature-showcase {
    flex-direction: column;
    min-height: 800px;
    height: auto;
    padding: 32px 0;
  }
  .feature-showcase-container {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .feature-showcase-image-container,
  .feature-showcase-content {
    padding-left: 0;
    justify-content: center;
    width: 100%;
  }
  .feature-showcase-image {
    width: 90vw;
    max-width: 98vw;
  }
  .feature-showcase-content {
    align-items: center;
    text-align: center;
    padding-left: 0;
  }
  .feature-showcase-title,
  .feature-showcase-subtitle {
    text-align: center;
  }
  .feature-grid {
    max-width: 98vw;
  }
}

@media (max-width: 600px) {
  .feature-showcase {
    min-height: 600px;
    padding: 16px 0;
  }
  .feature-showcase-title {
    font-size: 1.2rem;
  }
  .feature-showcase-subtitle {
    font-size: 0.95rem;
  }
  .feature-grid {
    gap: 12px 8px;
  }
  .feature-button {
    min-height: 48px;
    padding: 0 10px;
    font-size: 0.95rem;
  }
  .feature-button .feature-icon {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }
  .feature-label {
    font-size: 0.95rem;
  }
}

/* Scale Features Section */
.scale-features {
  background: #fff;
  color: #181c32;
  padding: 64px 0 64px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.scale-features-container {
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scale-features-title {
  text-align: center;
  margin-bottom: 12px;
  font-weight: 700;
  color: #111827;
  font-family: "DM Sans", sans-serif;
  letter-spacing: -0.5px;
}

@media (min-width: 1024px) {
  .scale-features-title {
    font-size: 36px;
  }
}

.scale-features-subtitle {
  text-align: center;
  margin-bottom: 48px;
  font-size: 18px;
  font-weight: 400;
  color: #4b5563;
  font-family: "DM Sans", sans-serif;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.scale-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  max-width: 1200px;
}

@media (min-width: 900px) {
  .scale-features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 32px;
  }
}

@media (min-width: 600px) and (max-width: 899px) {
  .scale-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
}

.scale-card {
  background: #fff;
  border-radius: 18px;
  padding: 40px 32px 32px 32px;
  border: 2px solid #e2e8f0;
  max-width: 434px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 0 auto;
}

.scale-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 8px;
  margin-bottom: 22px;

  background: linear-gradient(135deg, #2563eb 0%, #9333ea 100%);
}

.scale-card-icon i {
  font-size: 22px;
  color: #fff;
  background-color: none;
}

.scale-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.scale-card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
}

.scale-card-title {
  font-weight: 700;
  color: #111827;
  text-align: left;
  margin: 0;
  line-height: 1.3;
  font-family: "DM Sans", sans-serif;
}

@media (min-width: 900px) {
  .scale-card-title {
    font-size: 19px;
  }
}

.scale-card-description {
  font-size: 12px;
  color: #4b5563;
  text-align: left;
  margin: 0;
  line-height: 1.6;
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
}

.scale-card-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.scale-card-features li {
  font-size: 12px;
  color: #4b5563;
  line-height: 1.4;
  position: relative;
  padding-left: 18px;
  text-align: left;
  font-weight: 400;
}

.scale-card-features li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: bold;
  font-size: 1.2em;
}

@media (max-width: 599px) {
  .scale-features {
    padding: 32px 0 32px 0;
  }
  .scale-card {
    padding: 22px 10px 18px 10px;
    min-width: 0;
    max-width: 98vw;
  }
  .scale-card-title {
    font-size: 1.08rem;
  }
  .scale-card-description {
    font-size: 0.97rem;
  }
  .scale-card-icon,
  .scale-card-icon i {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
  }
  .scale-icon-image {
    width: 1.5rem;
    height: 1.5rem;
  }
  .scale-card-features li {
    font-size: 0.95rem;
  }
}

/* Delivery Management Section */
.delivery-management {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 8px 32px 8px;
  background: linear-gradient(135deg, #9333ea 0%, #4318ff 100%);
}

@media (min-width: 640px) {
  .delivery-management {
    padding: 96px 8px 40px 8px;
  }
}

@media (min-width: 1024px) {
  .delivery-management {
    padding: 128px 8px 48px 8px;
  }
}

/* Delivery Management Container */
.delivery-management-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 0 16px;
}

@media (min-width: 640px) {
  .delivery-management-container {
    padding: 0 32px;
  }
}

@media (min-width: 1024px) {
  .delivery-management-container {
    flex-direction: row;
    padding: 0 48px;
  }
}

/* Delivery Management Content */
.delivery-management-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  flex: 1;
  width: 100%;
  max-width: 768px;
  order: 2;
}

@media (min-width: 1024px) {
  .delivery-management-content {
    order: 1;
  }
}

/* Delivery Management Title */
.delivery-management-title {
  color: #ffffff;
  margin-bottom: 16px;
  text-align: center;
  width: 100%;
  font-weight: bold;
  line-height: 1.1;
  font-size: 28px;
}

@media (min-width: 640px) {
  .delivery-management-title {
    font-size: 36px;
  }
}

@media (min-width: 768px) {
  .delivery-management-title {
    font-size: 42px;
  }
}

@media (min-width: 1024px) {
  .delivery-management-title {
    text-align: left;
    font-size: 52px;
  }
}

@media (min-width: 1280px) {
  .delivery-management-title {
    font-size: 64px;
  }
}

/* Delivery Management Subtitle */
.delivery-management-subtitle {
   color:white;
  margin-bottom: 32px;
  text-align: center;
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

@media (min-width: 640px) {
  .delivery-management-subtitle {
    font-size: 15px;
  }
}

@media (min-width: 768px) {
  .delivery-management-subtitle {
    font-size: 18px;
  }
}

@media (min-width: 1024px) {
  .delivery-management-subtitle {
    text-align: left;
    font-size: 22px;
  }
}

@media (min-width: 1280px) {
  .delivery-management-subtitle {
    font-size: 24px;
  }
}

/* Delivery Management Grid */
.delivery-management-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
}

@media (min-width: 640px) {
  .delivery-management-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .delivery-management-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 40px;
  }
}

/* Delivery Management Button */
.delivery-management-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 14px;
  cursor: pointer;
  font-weight: bold;
  min-height: 44px;
  height: 70px;
  border: none;
  outline: none;
}

@media (min-width: 640px) {
  .delivery-management-button {
    gap: 14px;
    padding: 18px 12px;
    border-radius: 14px;
    min-height: 56px;
    height: 100px;
  }
}

@media (min-width: 1024px) {
  .delivery-management-button {
    gap: 20px;
    padding: 24px 16px;
    border-radius: 16px;
    min-height: 64px;
    height: 137px;
  }
}

/* Delivery Management Button Inactive */
.delivery-management-button-inactive {
  background-color: #ffffff;
  color: #000000;
  box-shadow: none;
}

/* Delivery Management Button Active */
.delivery-management-button-active {
  background-color: #000000;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Delivery Management Icon */
.delivery-management-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(to right, #4318ff, #9333ea);
  color: #ffffff;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .delivery-management-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }
}

@media (min-width: 1024px) {
  .delivery-management-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }
}

.delivery-management-icon i {
  font-size: 16px;
  color: #ffffff;
}

@media (min-width: 640px) {
  .delivery-management-icon i {
    font-size: 20px;
  }
}

@media (min-width: 1024px) {
  .delivery-management-icon i {
    font-size: 19px;
  }
}

/* Delivery Management Label */
.delivery-management-label {
  line-height: 1.2;
  flex: 1;
  text-align: left;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  white-space: normal;
}

@media (min-width: 640px) {
  .delivery-management-label {
    font-size: 14px;
  }
}

@media (min-width: 768px) {
  .delivery-management-label {
    font-size: 16px;
  }
}

@media (min-width: 1024px) {
  .delivery-management-label {
    font-size: 15px;
    font-weight: 500;
  }
}

/* Delivery Management Image Container */
.delivery-management-image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  order: 1;
  width: 100%;
}

@media (min-width: 1024px) {
  .delivery-management-image-container {
    order: 2;
    width: auto;
  }
}

/* Delivery Management Image */
.delivery-management-image {
  width: 100%;
  max-width: 384px;
  height: auto;
  max-height: 100%;
  margin-top: 26px;
}

@media (min-width: 640px) {
  .delivery-management-image {
    max-width: 448px;
  }
}

@media (min-width: 1024px) {
  .delivery-management-image {
    max-width: none;
  }
}
/* Reset and base styles */

/* Modal Feature Section */
.modal-feature {
  background: #fff;
  border-top: 3px solid #7f3cff;
  border-bottom: 3px solid #7f3cff;
  padding: 48px 0 64px 0;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal-feature-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 400;
  color: #020817;
  margin-bottom: 40px;
  letter-spacing: 1.5px;
}

@media (min-width: 900px) {
  .modal-feature-title {
    font-size: 36px;
  }
}

.modal-feature-cards {
  display: flex;
  flex-direction: row;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  max-width: 1500px;
  margin-bottom: 36px;
}

@media (max-width: 900px) {
  .modal-feature-cards {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
}

.modal-card {
  flex: 1 1 0;
  max-width: 322px;
  width: 100%;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  padding: 51px 40px 47px 40px;
  border: 0.4px solid #e2e8f0;
}

.modal-card-content {
  display: flex;
  flex-direction: column;
}

.modal-card-title {
  font-size: 18px;
  font-weight: 400;
  color: #020817;
  margin-bottom: 10px;
  display: flex;
}

.bistar-icon{
    width: 20px;
    height: 20px;
    margin-left: 10px;
}
.main_card-modal{
    display: flex;

}

.modal-card-description {
  font-size: 13px;
  color: #64748b;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
  text-align: justify;
}

.modal-feature-button {
  margin-top: 18px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}

.modal-feature-button i {
  font-size: 1.2em;
}

@media (max-width: 900px) {
  .modal-card {
    max-width: 98vw;
    min-width: 0;
    padding: 22px 8px 18px 8px;
  }
  .modal-feature-title {
    font-size: 1.2rem;
  }
  .modal-card-title {
    font-size: 1rem;
  }
  .modal-card-description {
    font-size: 0.95rem;
  }
}

/* Delivery App Showcase Section */
.delivery-app-showcase {
  width: 100%;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 8px;
  background: linear-gradient(135deg, #9333ea 0%, #4318ff 100%);
}

@media (min-width: 640px) {
  .delivery-app-showcase {
    padding: 64px 8px;
  }
}

@media (min-width: 1024px) {
  .delivery-app-showcase {
    padding: 16px 96px;
  }
}

/* Delivery App Showcase Container */
.delivery-app-showcase-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding: 0 16px;
}

@media (min-width: 640px) {
  .delivery-app-showcase-container {
    padding: 0 24px;
  }
}

@media (min-width: 768px) {
  .delivery-app-showcase-container {
    padding: 0 32px;
  }
}

@media (min-width: 1024px) {
  .delivery-app-showcase-container {
    flex-direction: row;
    padding: 0 48px;
  }
}

/* Delivery App Showcase Buttons */
.delivery-app-showcase-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: 100%;
  order: 2;
}

@media (min-width: 640px) {
  .delivery-app-showcase-buttons {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (min-width: 1024px) {
  .delivery-app-showcase-buttons {
    grid-template-columns: 1fr;
    width: 340px;
    order: 2;
    gap: 24px;
  }
}

/* Delivery App Showcase Button */
.delivery-app-showcase-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 12px;
  padding: 16px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  min-height: 64px;
  height: 64px;
  gap: 10px;
  border: none;
  outline: none;
}

@media (min-width: 640px) {
  .delivery-app-showcase-button {
    gap: 16px;
    padding: 24px 16px;
    border-radius: 12px;
    min-height: 110px;
    height: 110px;
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

@media (min-width: 1024px) {
  .delivery-app-showcase-button {
    gap: 20px;
    padding: 40px 24px;
    border-radius: 16px;
    min-height: 112px;
    height: 112px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/* Delivery App Showcase Button Inactive */
.delivery-app-showcase-button-inactive {
  background-color: #ffffff;
  color: #000000;
  box-shadow: none;
}

/* Delivery App Showcase Button Active */
.delivery-app-showcase-button-active {
  background-color: #000000;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Delivery App Showcase Icon */
.delivery-app-showcase-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: linear-gradient(to right, #2563eb, #9333ea);
  color: #ffffff;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .delivery-app-showcase-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }
}

@media (min-width: 1024px) {
  .delivery-app-showcase-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }
}

.delivery-app-showcase-icon i {
  font-size: 16px;
  color: #ffffff;
}

@media (min-width: 640px) {
  .delivery-app-showcase-icon i {
    font-size: 20px;
  }
}

@media (min-width: 768px) {
  .delivery-app-showcase-icon i {
    font-size: 24px;
  }
}

@media (min-width: 1024px) {
  .delivery-app-showcase-icon i {
    font-size: 19px;
  }
}

/* Delivery App Showcase Label */
.delivery-app-showcase-label {
  line-height: 1.2;
  flex: 1;
  text-align: left;
  font-size: 11px;
  font-weight: 500;
  display: flex;
  white-space: normal;
}

@media (min-width: 640px) {
  .delivery-app-showcase-label {
    font-size: 13px;
  }
}

@media (min-width: 768px) {
  .delivery-app-showcase-label {
    font-size: 16px;
  }
}

@media (min-width: 1024px) {
  .delivery-app-showcase-label {
    font-size: 15px;
    font-weight: 500;
  }
}

@media (max-width: 1023px) {
  .delivery-app-showcase-label {
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  .delivery-app-showcase-label {
    font-size: 11px;
  }
}

/* Delivery App Showcase Image Container */
.delivery-app-showcase-image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  order: 1;
  width: 100%;
}

@media (min-width: 1024px) {
  .delivery-app-showcase-image-container {
    order: 2;
    width: auto;
  }
}

/* Delivery App Showcase Image */
.delivery-app-showcase-image {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  margin-top: 26px;
  height: auto;
}

@media (min-width: 640px) {
  .delivery-app-showcase-image {
    max-width: 448px;
  }
}

@media (min-width: 500px) and (max-width: 1023px) {
  .delivery-app-showcase-image {
    max-width: 400px;
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .delivery-app-showcase-image {
    width: 400px;
  }
}

/* Delivery App Showcase Content */
.delivery-app-showcase-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  padding: 0 16px;
  text-align: center;
  order: 3;
}

@media (min-width: 768px) {
  .delivery-app-showcase-content {
    padding: 0;
  }
}

@media (min-width: 1024px) {
  .delivery-app-showcase-content {
    max-width: 664px;
    text-align: left;
    order: 3;
  }
}

/* Delivery App Showcase Title */
.delivery-app-showcase-title {
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  line-height: 1.3;
  font-size: 64px;
}

@media (max-width: 1023px) {
  .delivery-app-showcase-title {
    font-size: 36px;
  }
}

@media (max-width: 640px) {
  .delivery-app-showcase-title {
    font-size: 24px;
  }
}

/* Delivery App Showcase Subtitle */
.delivery-app-showcase-subtitle {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 12px;
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.4;
  font-size: 24px;
}

@media (max-width: 1023px) {
  .delivery-app-showcase-subtitle {
    font-size: 15px;
  }
}

@media (max-width: 640px) {
  .delivery-app-showcase-subtitle {
    font-size: 12px;
  }
}

/* AI Power Section */
.ai-power {
  color: #ffffff;
  padding: 24px 12px;
  background-image: url("assets/images/Background.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}

@media (min-width: 640px) {
  .ai-power {
    padding: 32px 16px;
  }
}

@media (min-width: 768px) {
  .ai-power {
    padding: 40px 24px;
  }
}

@media (min-width: 1024px) {
  .ai-power {
    padding: 48px 32px;
  }
}

@media (min-width: 1280px) {
  .ai-power {
    padding: 64px 32px;
  }
}

/* AI Power Container */
.ai-power-container {
  max-width: 1152px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

/* AI Power Header */
.ai-power-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

@media (min-width: 640px) {
  .ai-power-header {
    gap: 16px;
    margin-bottom: 24px;
  }
}

@media (min-width: 768px) {
  .ai-power-header {
    gap: 24px;
    margin-bottom: 32px;
  }
}

@media (min-width: 1024px) {
  .ai-power-header {
    gap: 32px;
    margin-bottom: 40px;
  }
}

/* AI Power Icon */
.ai-power-icon {
  color: #ffffff;
  font-size: 40px;
}

@media (max-width: 640px) {
  .ai-power-icon {
    width: 24px;
    height: 24px;
    font-size: 24px;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .ai-power-icon {
    width: 32px;
    height: 32px;
    font-size: 32px;
  }
}

/* AI Power Title */
.ai-power-title {
  font-size: 48px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.2;
}

@media (max-width: 640px) {
  .ai-power-title {
    font-size: 24px;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .ai-power-title {
    font-size: 32px;
  }
}

/* AI Power Features */
.ai-power-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

@media (min-width: 640px) {
  .ai-power-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
  }
}

@media (min-width: 768px) {
  .ai-power-features {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
  }
}

@media (min-width: 1024px) {
  .ai-power-features {
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-bottom: 32px;
  }
}

/* AI Power Feature */
.ai-power-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 4px;
}

@media (min-width: 640px) {
  .ai-power-feature {
    gap: 8px;
    padding: 8px;
  }
}

@media (min-width: 768px) {
  .ai-power-feature {
    gap: 12px;
    padding: 12px;
  }
}

@media (min-width: 1024px) {
  .ai-power-feature {
    gap: 16px;
    padding: 12px;
  }
}

/* AI Power Icon Background */
.ai-power-icon-bg {
  background-color: rgb(53, 79, 163);
  color: #ffffff;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 641px) and (max-width: 1024px) {
  .ai-power-icon-bg {
    width: 56px;
    height: 56px;
    padding: 12px;
  }
}

@media (min-width: 1024px) {
  .ai-power-icon-bg {
    width: 80px;
    height: 80px;
    padding: 16px;
  }
}

.ai-power-icon-bg i {
  font-size: 20px;
}

@media (min-width: 1024px) {
  .ai-power-icon-bg i {
    font-size: 30px;
  }
}
@media (min-width: 1024px) {
  .ai-power-icon-bg img {
    width: 34px;
    height: 34px;
  }
}

/* AI Power Icon Text */
.ai-power-icon-text {
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
  line-height: 1.2;
  margin-top: 8px;
}

@media (max-width: 640px) {
  .ai-power-icon-text {
    font-size: 12px;
    line-height: 1.2;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .ai-power-icon-text {
    font-size: 18px;
  }
}

@media (min-width: 1024px) {
  .ai-power-icon-text {
    margin-top: 20px;
  }
}

/* AI Power Request Demo Button */
.ai-power-request-demo-button {
  margin: 8px 0;
  box-shadow: none;
  height: 58px;
  background-color: #ffffff;
  border-radius: 10px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  width: 214px;
  margin-left: auto;
  margin-right: auto;
}
.ai-power-request-demo-button img{
    width: 20px;
    height: 20px;
}
@media (max-width: 640px) {
  .ai-power-request-demo-button {
    height: 48px;
    width: 100%;
    max-width: 280px;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .ai-power-request-demo-button {
    height: 52px;
    width: 200px;
  }
}

/* AI Power Request Demo Button Text */
.ai-power-request-demo-button-text {
  font-size: 18px;
  font-weight: 400;
  color: #4318ff;
}

@media (max-width: 640px) {
  .ai-power-request-demo-button-text {
    font-size: 14px;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .ai-power-request-demo-button-text {
    font-size: 18px;
  }
}

/* AI Power Request Demo Button Icon */
.ai-power-request-demo-button i {
  color: #3b82f6;
  font-size: 16px;
}

@media (max-width: 640px) {
  .ai-power-request-demo-button i {
    width: 14px;
    height: 14px;
    font-size: 14px;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .ai-power-request-demo-button i {
    width: 16px;
    height: 16px;
    font-size: 16px;
  }
}

/* AI Power Bottom Card */
.ai-power-bottom-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 16px;
  margin: 48px 0 16px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 1368px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 641px) and (max-width: 1024px) {
  .ai-power-bottom-card {
    padding: 24px;
    margin: 80px 0 20px 0;
  }
}

@media (min-width: 1024px) {
  .ai-power-bottom-card {
    padding: 40px;
    margin: 96px 0 32px 0;
  }
}

/* AI Power Bottom Card Title */
.ai-power-bottom-card-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #2b3674;
  margin-bottom: 8px;
}

@media (max-width: 640px) {
  .ai-power-bottom-card-title {
    font-size: 18px;
    line-height: 1.3;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .ai-power-bottom-card-title {
    font-size: 24px;
  }
}

@media (min-width: 1024px) {
  .ai-power-bottom-card-title {
    font-size: 24px;
    margin-bottom: 16px;
  }
}

/* AI Power Bottom Card Subtitle */
.ai-power-bottom-card-subtitle {
  text-align: center;
  margin-bottom: 12px;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 400;
  color: #2b3674;
  line-height: 1.4;
}

@media (max-width: 640px) {
  .ai-power-bottom-card-subtitle {
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 16px;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .ai-power-bottom-card-subtitle {
    font-size: 14px;
  }
}

@media (min-width: 1024px) {
  .ai-power-bottom-card-subtitle {
    font-size: 15px;
    margin-bottom: 24px;
    margin-top: 16px;
    padding: 0 16px;
  }
}

/* AI Power Bottom Card Buttons */
.ai-power-bottom-card-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

@media (min-width: 640px) {
  .ai-power-bottom-card-buttons {
    flex-direction: row;
    gap: 12px;
  }
}

@media (min-width: 768px) {
  .ai-power-bottom-card-buttons {
    gap: 16px;
  }
}

/* AI Power Bottom Card Start Trial Button */
.ai-power-bottom-card-start-trial-button {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(to right, #4318ff, #9333ea);
  height: 60px;
  border-radius: 10px;
  border: none;
  margin: 8px 0;
  box-shadow: none;
  cursor: pointer;
  width: 175px;
}

@media (max-width: 640px) {
  .ai-power-bottom-card-start-trial-button {
    height: 48px;
    font-size: 14px;
    width: 100%;
    margin: 4px 0;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .ai-power-bottom-card-start-trial-button {
    height: 52px;
    font-size: 18px;
    width: 160px;
  }
}

/* AI Power Bottom Card Schedule Demo Button */
.ai-power-bottom-card-schedule-demo-button {
  font-size: 16px;
  font-weight: 700;
  color: #4318ff;
  background-color: #ffffff;
  border-radius: 10px;
  border: 2px solid #4318ff;
  height: 60px;
  margin: 8px 0;
  box-shadow: none;
  cursor: pointer;
  width: 175px;
}

@media (max-width: 640px) {
  .ai-power-bottom-card-schedule-demo-button {
    height: 48px;
    font-size: 14px;
    width: 100%;
    margin: 4px 0;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .ai-power-bottom-card-schedule-demo-button {
    height: 52px;
    font-size: 16px;
    width: 160px;
  }
}

/* FAQ Section */
.faq {
  background-color: #0a0a0a;
  color: #ffffff;
  min-height: auto;
  width: 100%;
  padding: 2rem 1rem;
}

@media (min-width: 640px) {
  .faq {
    padding: 3rem 1.5rem;
  }
}

@media (min-width: 768px) {
  .faq {
    padding: 4rem 2rem;
  }
}

@media (min-width: 1024px) {
  .faq {
    padding: 4rem 2rem;
  }
}

.faq-container {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: space-between;
}

@media (min-width: 640px) {
  .faq-container {
    gap: 3rem;
  }
}

@media (min-width: 768px) {
  .faq-container {
    gap: 4rem;
  }
}

@media (min-width: 1024px) {
  .faq-container {
    flex-direction: row;
    gap: 5rem;
  }
}

@media (min-width: 1280px) {
  .faq-container {
    gap: 5rem;
  }
}

/* Left side - FAQs */
.faq-left {
  flex: 1;
  width: 100%;
}

@media (min-width: 1024px) {
  .faq-left {
    min-width: 320px;
  }
}

.faq-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .faq-header {
    gap: 0.75rem;
    margin-bottom: 2rem;
  }
}

.faq-title-icon {
  font-size: 1.875rem;
  color: #6366f1;
}

@media (min-width: 640px) {
  .faq-title-icon {
    width: 1.75rem;
    height: 1.75rem;
  }
}

.faq-main-title {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .faq-main-title {
    font-size: 1.875rem;
  }
}

@media (min-width: 768px) {
  .faq-main-title {
    font-size: 20px;
  }
}

@media (min-width: 1024px) {
  .faq-main-title {
    font-size: 3rem;
  }
}

@media (min-width: 1280px) {
  .faq-main-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1536px) {
  .faq-main-title {
    font-size: 48px;
  }
}

.faq-questions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .faq-questions {
    gap: 2rem;
  }
}

.faq-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-question {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .faq-question {
    gap: 1rem;
  }
}

.faq-question-icon {
  font-size: 1rem;
  color: #6366f1;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .faq-question-icon {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.faq-question-text {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .faq-question-text {
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  .faq-question-text {
    font-size: 20px;
  }
}

.faq-answer {
  line-height: 1.625;
  margin-left: 1.75rem;
  font-size: 18px;
  font-weight: 400;
  color: #cbd5e1;
}

@media (min-width: 640px) {
  .faq-answer {
    font-size: 1rem;
    margin-left: 2.25rem;
  }
}

@media (min-width: 768px) {
  .faq-answer {
    font-size: 18px;
    font-weight: 400;
  }
}

.faq-divider {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 1rem;
}

@media (min-width: 640px) {
  .faq-divider {
    margin-top: 1.5rem;
  }
}

/* Right side - Help Card */
.faq-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 5rem;
}

@media (min-width: 1024px) {
  .faq-right {
    min-width: 320px;
    margin-top: 5rem;
  }
}

.help-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background: transparent;
}
.help-card-div{ 
    background: linear-gradient(135deg, #4318FF 0%, #8B5CF6 100%); 
    border-radius: 50%; 
    width: 160px;
     height: 160px; 
     display: flex; 
     align-items: center;
      justify-content: center;
       margin-bottom: 32px;
}



.help-card-icon-container {
  background: linear-gradient(to right, #3b82f6, #8b5cf6);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.help-card-icon {
  font-size: 5rem;
  color: #ffffff;
}

.help-card-title {
  text-align: center;
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 12px;
}
@media (min-width: 640px) {
  .help-card-title {
    font-size: 1.25rem;
  }
}

@media (min-width: 768px) {
  .help-card-title {
    font-size: 30px;
  }
}

@media (min-width: 1024px) {
  .help-card-title {
    font-size: 30px;
  }
}

.help-card-subtitle {
  text-align: center;
  margin-bottom: 32px;
  font-size: 18px;
  line-height: 1.625;
  padding: 0 0.5rem;
  color: #cbd5e1;
  font-weight: 400;
}
@media (min-width: 640px) {
  .help-card-subtitle {
    margin-bottom: 1rem;
    font-size: 1rem;
    padding: 0 1rem;
  }
}

@media (min-width: 768px) {
  .help-card-subtitle {
    font-size: 18px;
  }
}

.help-card-button {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  box-shadow: none;
  border-radius: 10px;
  background-color: #ffffff;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 1rem;
  cursor: pointer;
  border: 2px solid #7b3ffb;
  color: #7b3ffb;
  font-size: 1.1rem;
  font-weight: 500;
}

.help-card-button-icon {
  font-size: 1.125rem;
  color: #3b82f6;
}

@media (min-width: 640px) {
  .help-card-button-icon {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.help-card-button-text {
  color: #4318ff;
  font-size: 18px;
  font-weight: 400;
}

@media (min-width: 640px) {
  .help-card-button-text {
    font-size: 18px;
  }
}
.footer {
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  background-image: url("assets/images/footerImage.png");
  background-size: cover;
  background-repeat: no-repeat;
  color: #ffffff;
}

@media (min-width: 640px) {
  .footer {
    padding-top: 3rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 768px) {
  .footer {
    padding-top: 4rem;
  }
}

@media (min-width: 1024px) {
  .footer {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.footer-container {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
  }
}

@media (min-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .footer-container {
    margin-bottom: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .footer-container {
    margin-bottom: 2.5rem;
  }
}

.logo-section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .logo-section {
    gap: 1rem;
  }
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

@media (min-width: 640px) {
  .logo-text {
    font-size: 1.5rem;
  }
}

.social-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

@media (min-width: 640px) {
  .social-links {
    gap: 2rem;
  }
}

.social-link {
  color: #ffffff;
  text-decoration: none;
}

.social-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .section {
    gap: 0.75rem;
  }
}

.section-title {
  margin-bottom: 0.5rem;
  font-size: 20px;
  font-weight: 600;
}

@media (min-width: 640px) {
  .section-title {
    margin-bottom: 0.75rem;
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  .section-title {
    font-size: 1.125rem;
  }
}

.section-text {
  font-weight: 500;
  font-size: 16px;
  color: #f5f5f5;
  line-height: 1.6;
}

@media (min-width: 640px) {
  .section-text {
    font-weight: 500;
    font-size: 16px;
    color: #f5f5f5;
  }
}

.section-link {
  font-weight: 500;
  font-size: 16px;
  color: #f5f5f5;
  text-decoration: none;
}

@media (min-width: 640px) {
  .section-link {
    font-weight: 500;
    font-size: 16px;
    color: #f5f5f5;
  }
}

.divider {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .divider {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

.testimonial-section {
  background: #f6f8fe;
  padding: 115px 0 64px 0;
  position: relative;
}

.testimonial-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.testimonial-header {
  text-align: center;
  margin-bottom: 40px;
}

.testimonial-stars-row {
  color: #fbbf24;
  font-size: 28px;
  margin-bottom: 18px;
  letter-spacing: 2px;
}

.testimonial-main-title {
  font-size: 60px;
  font-weight: 400;
  color: #11110e;
  margin-bottom: 0;
  line-height: 1.15;
}

.testimonial-title-highlight {
  color: #4318ff;
  font-weight: 400;
}

.testimonials-grid {
  column-count: 4;
  column-gap: 16px;
}

@media (max-width: 1200px) {
  .testimonials-grid {
    column-count: 3;
  }
}
@media (max-width: 900px) {
  .testimonials-grid {
    column-count: 2;
  }
}
@media (max-width: 600px) {
  .testimonials-grid {
    column-count: 1;
  }
}

.testimonial-card {
  display: block;
  break-inside: avoid;
  margin-bottom: 28px;
  width: 100%;
  border-radius: 11px;
  padding: 19px;
  background: #ffffff;
}

.testimonial-name {
  font-weight: 400;
  color: #2b3674;
  margin-bottom: 8px;
  font-size: 20px;
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 18px;
  margin-bottom: 10px;
}

.testimonial-text {
  color: #2b3674;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

.testimonial-blur-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom:0;
  width: 100%;
  height: 73%;
  pointer-events: none;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.testimonial-blur-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(0px);
  opacity: 1;
  border-radius: 20px;
}

@media (max-width: 900px) {
  .testimonial-main-title {
    font-size: 28px;
  }
  .testimonials-grid {
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .testimonial-main-title {
    font-size: 20px;
  }
  .testimonial-header {
    margin-bottom: 24px;
  }
  .testimonials-grid {
    gap: 12px;
  }
  .testimonial-card {
    padding: 16px 10px 14px 10px;
  }
  .testimonial-blur-overlay,
  .testimonial-blur-overlay img {
    height: 80px;
  }
}

.footer-bottom {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  opacity: 0.8;
  gap: 0.5rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    gap: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
  }
}

@media (min-width: 768px) {
  .footer-bottom {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}

.footer-bottom-text {
  font-size: 14px;
  font-weight: 500;
  color: #bebebe;
}

.footer-bottom-link {
  color: #bebebe;
  font-size: 14px;
  text-decoration: underline;
  transition: all 0.3s;
  font-weight: 500;
}

/* AI Banner Section - Refined for Pixel-Perfect Match */
.ai-banner-section {
  position: relative;
  width: 100%;
  min-height: 355px;
  background: url("assets/images/frameImage.png") center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-bottom: 0;
  overflow: hidden;
}

.ai-banner-logo-left,
.ai-banner-logo-right {
  position: absolute;
  top: 50%;
  width: 340px;
  height: auto;
  opacity: 0.13;
  transform: translateY(-50%);
  z-index: 1;
}

.ai-banner-logo-left {
  left: 2%;
}

.ai-banner-logo-right {
  right: 2%;
}

.ai-banner-section .center-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  margin-top: 40px;
}

.ai-banner-heading {
  font-family: "DM Sans", sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 32px;
  letter-spacing: 0.01em;
  color: #181c32;
}

.ai-banner-line {
  display: inline-block;
  margin: 0 0 0 0;
}

.ai-banner-blue {
  color: #4318ff;
  font-weight: 600;
}

.ai-banner-black {
  color: #020817;
  font-weight: 600;
}

.ai-banner-heading .ai-banner-blue {
  font-size: 64px;
}

.ai-banner-heading .ai-banner-black {
  font-size: 64px;
}

.ai-banner-subtitle {
  color: #64748b;
  font-size: 22px;
  font-weight: 500;
  margin-top: 24px;
  margin-bottom: 40px;
  letter-spacing: 0.01em;
}
@media (max-width: 1200px) {
  .ai-banner-logo-left,
  .ai-banner-logo-right {
    width: 340px;
  }
  .ai-banner-heading .ai-banner-blue,
  .ai-banner-heading .ai-banner-black,
  .ai-banner-heading {
    font-size: 44px;
  }
  .ai-banner-subtitle {
    font-size: 20px;
  }
}

@media (max-width: 900px) {
  .ai-banner-logo-left,
  .ai-banner-logo-right {
    width: 180px;
  }
  .ai-banner-heading .ai-banner-blue,
  .ai-banner-heading .ai-banner-black,
  .ai-banner-heading {
    font-size: 28px;
  }
  .ai-banner-subtitle {
    font-size: 14px;
  }
  .ai-banner-section {
    min-height: 220px;
  }
}

@media (max-width: 600px) {
  .ai-banner-section {
    min-height: 120px;
    padding: 18px 0 12px 0;
  }
  .ai-banner-logo-left,
  .ai-banner-logo-right {
    width: 80px;
  }
  .ai-banner-heading .ai-banner-blue,
  .ai-banner-heading .ai-banner-black,
  .ai-banner-heading {
    font-size: 18px;
  }
  .ai-banner-subtitle {
    font-size: 10px;
  }
}

.hero-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 32px 16px 32px 16px;
  width: 100%;
  height: auto;
  position: relative;
}

@media (min-width: 640px) {
  .hero-banner {
    padding: 48px 24px 48px 24px;
  }
}

@media (min-width: 768px) {
  .hero-banner {
    padding: 48px 32px 48px 32px;
  }
}

@media (min-width: 1024px) {
  .hero-banner {
    flex-direction: row;
    padding: 80px 32px 80px 96px;
  }
}

@media (min-width: 1280px) {
  .hero-banner {
    padding: 80px 48px 41px 96px;
  }
}

/* Left Content */
.hero-left-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  z-index: 10;
  width: 100%;
  text-align: center;
  color: #ffffff;
  order: 2;
  margin-top: 24px;
}

@media (min-width: 1024px) {
  .hero-left-content {
    width: auto;
    text-align: left;
    margin-left: 32px;
    order: 1;
    margin-top: 0;
  }
}

@media (min-width: 1280px) {
  .hero-left-content {
    margin-left: 48px;
  }
}
.plane-mind-icon {
  width: 16px;
  height: 16px;
}

/* Badge */
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid #9333ea;
  margin-bottom: 16px;
  margin-left: auto;
  margin-right: auto;
  width: 351px;
  max-width: 90vw;
}

@media (min-width: 1024px) {
  .hero-badge {
    margin-left: 0;
    margin-right: 0;
  }
}

.badge-content {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
}

.badge-text {
  color: #ffffff;
  font-weight: 400;
  font-size: 12px;
}

.mobile-badge {
  display: block;
}

.desktop-badge {
  display: none;
}

@media (min-width: 640px) {
  .mobile-badge {
    display: none;
  }

  .desktop-badge {
    display: inline;
  }
}
.fa-solid {
  font-size: 12px;
}

/* Heading */
.hero-heading {
  color: #ffffff;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}

.desktop-heading {
  display: none;
  flex-direction: column;
  font-size: 42px;
}

.mobile-heading {
  display: block;
  margin-bottom: 8px;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .mobile-heading {
    font-size: 24px;
  }
}

@media (min-width: 768px) {
  .mobile-heading {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {
  .desktop-heading {
    display: flex;
    font-size: 42px;
    line-height: 1.1;
  }

  .mobile-heading {
    display: none;
  }
}

@media (min-width: 1280px) {
  .desktop-heading {
    font-size: 48px;
  }
}

@media (min-width: 1536px) {
  .desktop-heading {
    font-size: 56px;
  }
}

@media (min-width: 1537px) {
  .desktop-heading {
    font-size: 69px;
    line-height: 1.2;
  }
}

/* Heading Highlight */
.heading-highlight {
  background: linear-gradient(135deg, #93c5fd 0%, #c4b5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Star Icon */
.star-icon {
  color: #ffb547;
  font-size: 31px;
  position: absolute;
  top: 20%;
  right: 56%;
  z-index: 2;
  display: none;
}

@media (min-width: 1024px) {
  .star-icon {
    display: block;
  }
}

/* Subtitle */
.hero-subtitle {
  color: #dbeafe;
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 24px;
  margin-top: 16px;
}

@media (max-width: 480px) {
  .hero-subtitle {
    font-size: 10px;
  }
}

@media (min-width: 481px) and (max-width: 640px) {
  .hero-subtitle {
    font-size: 12px;
  }
}

@media (min-width: 641px) and (max-width: 768px) {
  .hero-subtitle {
    font-size: 16px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero-subtitle {
    font-size: 18px;
  }
}

@media (min-width: 1025px) and (max-width: 1280px) {
  .hero-subtitle {
    font-size: 20px;
  }
}

@media (min-width: 1281px) and (max-width: 1536px) {
  .hero-subtitle {
    font-size: 22px;
  }
}

@media (min-width: 1537px) {
  .hero-subtitle {
    font-size: 24px;
  }
}

/* Buttons Container */
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  width: 100%;
  margin-top: 16px;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    gap: 16px;
    width: auto;
  }
}

/* Hero Button */
.hero-button {
  width: 238px;
  height: 48px;
  background-color: #ffffff;
  border-radius: 8px;
  margin-bottom: 13px;
  border: none;
  cursor: pointer;
}
.hero-button-expert {
  width: 238px;
  height: 48px;
  background-color: #ffffff;
  border-radius: 8px;
  margin-bottom: 13px;
  border: none;
  cursor: pointer;
}
@media (min-width: 640px) {
  .hero-button-expert {
    width: 238px;
  }
}

/* Button Content */
.hero-button-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

@media (min-width: 640px) {
  .hero-button-content {
    gap: 13px;
  }
}
@media (min-width: 640px) {
  .hero-button {
    width: 238px;
  }
}

/* Button Content */
.button-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

@media (min-width: 640px) {
  .button-content {
    gap: 31px;
  }
}

/* Button Text */
.button-text {
  color: #2b3674;
  font-weight: 700;
  font-size: 20px;
}

/* Button Icon */
.button-content i {
  color: #2b3674;
  font-size: 18px;
}

.hero-button-content i {
  color: #2b3674;
  font-size: 18px;
}

/* Chat Section */
.chat-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
  margin-top: 24px;
}

@media (min-width: 640px) {
  .chat-section {
    flex-direction: row;
    width: auto;
    justify-content: flex-start;
  }
}

@media (min-width: 1024px) {
  .chat-section {
    margin-top: 88px;
  }
}

/* Chat Button */
.chat-button {
  color: #909090;
  font-weight: 300;
  font-size: 13px;
  background: #ffffff;
  border-radius: 999px 150px 1000px 999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 10px 28px 10px 24px;
  min-width: 120px;
  text-align: center;
  cursor: pointer;
  border: none;
  outline: none;
  display: none;
}

@media (min-width: 640px) {
  .chat-button {
    display: block;
  }
}

.chat-icon-image {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

/* Right Images */
.hero-images {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  width: 100%;
  order: 1;
}

@media (min-width: 1024px) {
  .hero-images {
    flex: 1.5;
    justify-content: flex-end;
    margin-top: 0;
    margin-right: 16px;
    order: 2;
  }
}

@media (min-width: 1280px) {
  .hero-images {
    margin-right: 32px;
  }
}

/* Image Container */
.image-container {
  position: relative;
  width: 100%;
  max-width: 600px;
}

@media (min-width: 640px) {
  .image-container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .image-container {
    max-width: none;
  }
}

/* Desktop Image */
.desktop-image {
  width: 100%;
  max-width: 600px;
  min-width: 220px;
  height: auto;
  max-width: 100%;
  min-width: 300px;
}

/* Mobile Image */
.mobile-image {
  position: absolute;
  bottom: -10%;
  right: 12%;
  width: 40vw;
  max-width: 180px;
  min-width: 80px;
  height: auto;
  z-index: 10;
  display: none;
}

@media (min-width: 640px) {
  .mobile-image {
    bottom: -5%;
    right: 10%;
    width: 30vw;
    max-width: 220px;
  }
}

@media (min-width: 768px) {
  .mobile-image {
    width: 25vw;
    max-width: 250px;
  }
}

@media (min-width: 1024px) {
  .mobile-image {
    width: 20vw;
    display: block;
  }
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .hero-heading.desktop-heading {
    font-size: 24px;
  }

  .hero-subtitle {
    font-size: 10px;
  }
}

@media (min-width: 481px) and (max-width: 640px) {
  .hero-heading.desktop-heading {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 12px;
  }
}

@media (min-width: 641px) and (max-width: 768px) {
  .hero-heading.desktop-heading {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero-heading.desktop-heading {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 18px;
  }
}

@media (min-width: 1025px) and (max-width: 1280px) {
  .hero-heading.desktop-heading {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 20px;
  }
}

@media (min-width: 1281px) and (max-width: 1536px) {
  .hero-heading.desktop-heading {
    font-size: 56px;
  }

  .hero-subtitle {
    font-size: 22px;
  }
}

.star-icon-image {
  width: 52px;
  height: 41px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
}

.order-management {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 8px 32px 8px;
  background: linear-gradient(135deg, #9333ea 0%, #4318ff 100%);
}

@media (min-width: 640px) {
  .order-management {
    padding: 96px 8px 40px 8px;
  }
}

@media (min-width: 1024px) {
  .order-management {
    padding: 128px 8px 48px 8px;
  }
}

.order-management-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 0 16px;
}

@media (min-width: 640px) {
  .order-management-container {
    padding: 0 32px;
  }
}

@media (min-width: 1024px) {
  .order-management-container {
    flex-direction: row;
    padding: 0 48px;
  }
}

.order-management-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  flex: 1;
  width: 100%;
  max-width: 768px;
  order: 1;
}

@media (min-width: 1024px) {
  .order-management-content {
    order: 2;
  }
}

.order-management-title {
  color: #ffffff;
  margin-bottom: 16px;
  text-align: center;
  width: 100%;
  font-weight: bold;
  line-height: 1.1;
  font-size: 28px;
}

@media (min-width: 640px) {
  .order-management-title {
    font-size: 36px;
  }
}

@media (min-width: 768px) {
  .order-management-title {
    font-size: 42px;
  }
}

@media (min-width: 1024px) {
  .order-management-title {
    text-align: left;
    font-size: 52px;
  }
}

@media (min-width: 1280px) {
  .order-management-title {
    font-size: 64px;
  }
}

.order-management-subtitle {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  text-align: center;
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

@media (min-width: 640px) {
  .order-management-subtitle {
    font-size: 15px;
  }
}

@media (min-width: 768px) {
  .order-management-subtitle {
    font-size: 18px;
  }
}

@media (min-width: 1024px) {
  .order-management-subtitle {
    text-align: left;
    font-size: 22px;
  }
}

@media (min-width: 1280px) {
  .order-management-subtitle {
    font-size: 24px;
    color:white;
  }
}

.order-management-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(4, 1fr);
  gap: 16px;
  width: 90%;
}

@media (min-width: 640px) {
  .order-management-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .order-management-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 40px;
  }
}

.order-management-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 14px;
  cursor: pointer;
  font-weight: bold;
  min-height: 44px;
  height: 70px;
  border: none;
  outline: none;
}

@media (min-width: 640px) {
  .order-management-button {
    gap: 14px;
    padding: 18px 12px;
    border-radius: 14px;
    min-height: 56px;
    height: 100px;
  }
}

@media (min-width: 1024px) {
  .order-management-button {
    gap: 20px;
    padding: 24px 16px;
    border-radius: 16px;
    min-height: 64px;
    height: 137px;
  }
}

.order-management-button-inactive {
  background-color: #ffffff;
  color: #000000;
  box-shadow: none;
}

.order-management-button-active {
  background-color: #000000;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.order-management-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(to right, #4318ff, #9333ea);
  color: #ffffff;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .order-management-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }
}

@media (min-width: 1024px) {
  .order-management-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }
}

.order-management-icon i {
  font-size: 16px;
  color: #ffffff;
}

@media (min-width: 640px) {
  .order-management-icon i {
    font-size: 20px;
  }
}

@media (min-width: 1024px) {
  .order-management-icon i {
    font-size: 20px;
  }
}

.order-management-label {
  line-height: 1.2;
  flex: 1;
  text-align: left;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  white-space: normal;
}

@media (min-width: 640px) {
  .order-management-label {
    font-size: 14px;
  }
}

@media (min-width: 768px) {
  .order-management-label {
    font-size: 16px;
  }
}

@media (min-width: 1024px) {
  .order-management-label {
    font-size: 15px;
    font-weight: 500;
  }
}

.order-management-image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  order: 1;
  width: 100%;
}

@media (min-width: 1024px) {
  .order-management-image-container {
    order: 2;
    width: auto;
  }
}

.order-management-image {
  width: 100%;
  max-width: 384px;
  height: auto;
  max-height: 100%;
  margin-top: 26px;
}

@media (min-width: 640px) {
  .order-management-image {
    max-width: 448px;
  }
}

@media (min-width: 1024px) {
  .order-management-image {
    max-width: 900px;
  }
}

.delivery-icon {
  width: 25px;
  height: 25px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
}
.faq-header img{
    width: 40px;
    height: 40px;
    margin-right: 10px;
}
.faq-question img{
    width: 20px;
    height: 20px;
}
.help-card-icon-container img{
width: 82px;
height: 82px;
}
.help-card-button img{
    width: 20px;
    height: 20px;
}
.nlp-badge{
    background-color: #DBEAFE; 
    color: #1D4ED8;
}