/* CSS Variables for Theme Consistency */
:root {
--primary-color: #92C7CF;
    --secondary-color: #EBFFD8;
    --accent-color: #92C7CF;
    --text-primary: #000000;
    --text-secondary: #000000;
    --text-dark: #333333;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.246);
    --shadow-light: rgba(255, 182, 193, 0.3);
    --shadow-dark: rgba(0, 0, 0, 0.1);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease-out;
    --border-radius: 16px;
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
}

/* Focus Management for Accessibility */
*:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

button:focus,
a:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--spacing-md) 0;
    transition: var(--transition-smooth);
    transform: translateY(0);
}

.navbar.hidden {
    transform: translateY(-100%);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px var(--shadow-light);
    padding: 0.75rem var(--spacing-xl);
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 70px;
    width: auto;
    border-radius: 8px;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.logo-image:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-xl);
    align-items: center;
    position: relative;
    z-index: 1000;
    transition: var(--transition-smooth);
    flex-wrap: wrap;

}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 8px;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    position: relative;
    white-space: nowrap;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px var(--shadow-light);
}

.nav-link i {
    font-size: 0.9rem;
}

/* Technologies Dropdown Styles */
.technologies-dropdown {
    position: relative;
}

.dropdown-arrow {
    margin-left: var(--spacing-xs);
    font-size: 0.8rem;
    transition: var(--transition-smooth);
}

.technologies-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

/* Desktop Mega Dropdown */
.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--secondary-color);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    box-shadow: 0 16px 64px var(--shadow-light);
    min-width: 700px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-smooth);
    margin-top: var(--spacing-sm);
    overflow: hidden;
}

.technologies-dropdown.active .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-dropdown-content {
    display: flex;
    min-height: 350px;
}

.mega-categories {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border-right: 1px solid var(--text-dark);
    padding: var(--spacing-md) 0;
}

.mega-category {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    color: var(--text-primary);
    font-family: inherit;
    text-align: left;
}

.mega-category:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mega-category.active {
    background: rgba(255, 255, 255, 0.15);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: var(--spacing-md) var(--spacing-lg);
    font-weight: 500;
}

.category-header i:first-child {
    font-size: 1.1rem;
    color: var(--accent-color);
    width: 20px;
}

.category-arrow {
    margin-left: auto;
    font-size: 0.8rem;
    transition: var(--transition-smooth);
}

.mega-category:hover .category-arrow {
    transform: translateX(3px);
}

.mega-items {
    flex: 2;
    padding: var(--spacing-lg);
    position: relative;
}

.category-items {
    display: none;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition-smooth);
}

.category-items.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.items-title {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    border-bottom: 1px solid var(--text-dark);
    padding-bottom: 0.75rem;
}

.items-title i {
    color: var(--accent-color);
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.item-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.75rem;
    border-radius: 8px;
    transition: var(--transition-smooth);
    font-size: 0.9rem;
    border: 1px solid transparent;
}

.item-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--glass-border);
    transform: translateX(5px);
}

.item-link i {
    color: var(--accent-color);
    font-size: 0.9rem;
    width: 16px;
}

/* Mobile Submenu (Hidden on Desktop) */
.mobile-submenu {
    display: none;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: var(--spacing-sm);
    border-radius: 8px;
    transition: var(--transition-smooth);
    z-index: 1001;
    background: none;
    border: none;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url('../Images/ISV.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgb(146, 199, 207) 0%,
        rgb(235, 255, 216) 100%
    );
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: var(--text-primary);
    max-width: 800px;
    padding: 0 var(--spacing-xl);
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    text-shadow: 0 4px 8px var(--shadow-dark);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-primary);
    border: none;
    padding: var(--spacing-md) 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 32px var(--shadow-light);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid var(--text-dark);
    
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 48px var(--shadow-light);

}

.cta-button i {
    font-size: 1rem;

}

/* navigation end here */

.scrollable-logos1 {
  margin-top: 2rem;
  margin-bottom: 2rem;
  overflow: hidden;
}

.scrollable-heading1 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.scroll-container1 {
  overflow: hidden;
  width: 100%;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.scroll-wrapper1 {
  display: flex;
  gap: 40px;
  animation: scrollRightToLeft 60s linear infinite;
  width: max-content;
  overflow: hidden;
  margin: 0 auto;
  padding: 20px 0;
  position: relative;
}

.Scroll_logo1 img {
  height: 6rem;
  width: auto;
  display: block;
  object-fit: contain;
}

@keyframes scrollRightToLeft {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Jet Reports section starts here */

.Jet_Reports-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  margin: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* margin-top: -2rem; */
}

.Jet_Reports-section:hover {
  transform: translateY(-5px);
}

.Jet_Reports_content {
  max-width: 50%;
}

.Jet_Reports_logo {
  width: 100px;
  height: 100px;
  height: auto;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
  margin-top: -3rem;
  
  
}

.Jet_Reports_logo.large-logo {
  width: 300px;  /* Enlarge the logo */
  height: auto; /* Enlarge the logo */
  
}

.Jet_Reports_logo:hover {
  transform: scale(1.1);
}

.Jet_Reports-section h1 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #000000;
  position: relative;
  display: inline-block;
}

.Jet_Reports-section h1::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  /* background-color: var(--primary-color)); */
  transition: width 0.3s ease;
}

.Jet_Reports-section h1:hover::after {
  width: 100%;
}

.Jet_Reports-section p {
  font-size: 14px;
  color: #000000;
  margin-bottom: 30px;
  line-height: 1.6;
}

.Jet_Reports_demo-button {
  background-color: var(--secondary-color);
  color: #ffffff;
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 17px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.Jet_Reports_demo-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.Jet_Reports_demo-button:hover {
  background-color: var(--primary-color);
  box-shadow: 0 5px 15px rgba(171, 0, 239, 0.4);
}

.Jet_Reports_demo-button:hover::before {
  width: 300px;
  height: 300px;
}

.Jet_Reports_image-container {
  max-width: 55%;
  position: relative;
  margin-right: 20px;
  border-radius: 30px;
}

.Jet_Reports_dashboard-image {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
  border-radius: 30px;
}

.Jet_Reports_dashboard-image:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .Jet_Reports-section {
      flex-direction: column;
      text-align: center;
  }

  .Jet_Reports_content, .Jet_Reports_image-container {
      max-width: 100%;
  }

  .Jet_Reports_image-container {
      margin-top: 30px;
  }
}
/* Jet Reports section ends here */

/* jet reports features starts from here */

.jet_reports_features {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  width: 100%;
  margin: 0 auto;
  padding: 2rem;
  margin-top: -2rem;
}

.jet_title h1 {
  font-size: 1.5rem;
  text-align: center!important;
  margin-bottom: 3rem;
  color: #2c3e50;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.feature-card p {
  font-size:14px;
  color: #555;
}

.feature-icon {
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 4rem;
  color: rgba(52, 152, 219, 0.1);
  transform: rotate(15deg);
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* jet reports features ends here  */


/* jet reports benefits starts here */

/* Styling the section */
.jetreports_benefit {
  text-align: center;
  padding: 20px;
  /* border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
  max-width: 900px;
  margin: 20px auto;
  margin-top: -1rem;
}

/* Styling the heading */
#jetreports_heading {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

/* Styling the image */
#benefitImage {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Add hover effect */
#jetreports_heading:hover {
  color: var(--primary-color); /* Example highlight color */
}

#benefitImage:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* jet reports benefits ends here */

/* annimated line starts from here */

.animated-line-container {
  width: 100%;
  height: 1px; /* Adjust line height */
  background-color: transparent; /* Optional background for the section */
  overflow: hidden; /* Ensure animation stays within bounds */
  
}

.animated-line {
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, var(--primary-color), #00b7c3, #28a745);
  background-size: 200% 100%; /* Double the width for animation effect */
  animation: slide 3s linear infinite;
  border-radius: 1px; /* Optional rounded corners */
}

@keyframes slide {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}


/* annimated line section ends here */

/* Tasklet welcome page starts from here */

.Tasklet-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  margin: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.Tasklet-section:hover {
  transform: translateY(-5px);
}

.Tasklet_content {
  max-width: 50%;
  order: 2; 
  padding-left: 20px; 
  color: #000000;
}

.Tasklet_logo {
  width: 400px;
  height: auto;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
  margin-left: -5rem;

}

.Tasklet_logo:hover {
  transform: scale(1.1);
}

h1 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #333;
  position: relative;
  display: inline-block;
}

h1::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  /* background-color: var(--secondary-color); */
  transition: width 0.3s ease;
}

h1:hover::after {
  width: 100%;
}

 .Tasklet-section p {
  font-size: 14px;
  color: #000000;
  margin-bottom: 30px;
  line-height: 1.6;
}

.Tasklet_demo-button {
  background-color:var(--primary-color);
  color: #ffffff;
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 17px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.Tasklet_demo-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.Tasklet_demo-button:hover {
  background-color: var(--secondary-color);
  box-shadow: 0 5px 15px rgba(239, 123, 0, 0.4);
}

.Tasklet_demo-button:hover::before {
  width: 300px;
  height: 300px;
}

.Tasklet_image-container {
  max-width: 55%;
  position: relative;
  order: 1; /* Place image first */
  margin-right: 20px;
}

.Tasklet_dashboard-image {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
  border-radius: 30px;
}

.Tasklet_dashboard-image:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .Tasklet-section {
    flex-direction: column;
    text-align: center;
  }

  .Tasklet_content, .Tasklet_image-container {
    max-width: 100%;
  }

  .Tasklet_image-container {
    margin-top: 30px;
  }
}



/* Tasklet welcome page ends here */

/* Tasklet features starts from here */

.Tasklet_features {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  /* background-color: #ffffff; */
  padding: 10px;
  text-align: center;
  margin-top: 2rem;
  
}

h1 {
  font-size:28px;
  margin-top: 10px;

}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  margin-top: 15px;
}

.feature-item {
  padding: 10px;
  text-align: left;
}

.number {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e0f7ff;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.5rem;
  border-radius: 10%;
  margin-bottom: 10px;
}

.feature-title {
  font-size: 20px;
  margin-bottom: 5px;
}

.feature-description {
  font-size: 14px;
  line-height: 1.6;
  color: #000000;
}
/* Tasklet features ends here */


/* Ls_Retail welcome page starts here */

.Ls_Retail-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  margin: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* margin-top: -2rem; */
}

.Ls_Retail-section:hover {
  transform: translateY(-5px);
}

.Ls_Retail_content {
  max-width: 50%;
}

.Ls_Retail_logo {
  width: 300px;
  height: 300px;
  height: auto;
  margin-bottom: 20px;
  transition: transform 0.3s ease;

  
}

.Ls_Retail_logo.large-logo {
  width: 300px;  /* Enlarge the logo */
  height: 200px; /* Enlarge the logo */
  
}

.Ls_Retail_logo:hover {
  transform: scale(1.1);
}

.Ls_Retail-section h1 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #000000;
  position: relative;
  display: inline-block;
}

.Ls_Retail-section h1::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  /* background-color: var(--primary-color)); */
  transition: width 0.3s ease;
}

.Ls_Retail-section h1:hover::after {
  width: 100%;
}

.Ls_Retail-section p {
  font-size: 14px;
  color: #000000;
  margin-bottom: 30px;
  line-height: 1.6;
}

.Ls_Retail_demo-button {
  background-color: var(--secondary-color);
  color: #ffffff;
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 17px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.Ls_Retail_demo-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.Ls_Retail_demo-button:hover {
  background-color: var(--primary-color);
  box-shadow: 0 5px 15px rgba(171, 0, 239, 0.4);
}

.Ls_Retail_demo-button:hover::before {
  width: 300px;
  height: 300px;
}

.Ls_Retail_image-container {
  max-width: 55%;
  position: relative;
  margin-right: 20px;
  border-radius: 30px;
}

.Ls_Retail_dashboard-image {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
  border-radius: 30px;
}

.Ls_Retail_dashboard-image:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .Ls_Retail-section {
      flex-direction: column;
      text-align: center;
  }

  .Ls_Retail_content, .Ls_Retail_image-container {
      max-width: 100%;
  }

  .Ls_Retail_image-container {
      margin-top: 30px;
  }
}
/* Ls_Retail welcome page ends here */


/* Make layout responsive */
/* @media (max-width: 768px) {
  .LS_Retail {
    flex-direction: column; 
    height: auto; 
  }

  .LS_Retail_logo {
    position: relative;
    width: 50%; 
  }

  .LS_Retail_content {
    padding: 1.5rem; 
  }

  .LS_Retail_button {
    width: 80%; 
  }
} */

.lsretail_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  color: #000000;
  margin-top: -4rem;
}

.lsretailheader {
  text-align: center;
  margin-bottom: 3rem;
}

.lsretailheader h1 {
  color: #000000;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}

.lsretailtabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.lsretailtab-button {
  background: transparent;
  border: 1px solid #000000;
  color: #000000;
  padding: 1rem 1rem;
  font-size: 14px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 200px;
  text-align: center;
}

.lsretailtab-button.active {
  background-color: var(--primary-color);
  color: #000000;
  border: 2px solid var(--primary-color);
}

.lsretailtab-button:hover {
  background-color: var(--primary-color);
  color: #000000;
  border: 2px solid var(--primary-color);
}

.lsretailtab-content {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.lsretailtab-pane {
  display: none;
  color: #000000;
  max-width: 800px;
  font-size: 14px;
  text-align: center;
  margin: 1rem;
}

.lsretailtab-pane.active {
  display: block;
}

@media (max-width: 768px) {
  .lsretailheader h1 {
      font-size: 1.5rem;
  }

  .lsretailtabs {
      flex-direction: column;
      gap: 1rem;
  }

  .lsretailtab-content {
      flex-direction: column;
      align-items: center;
  }

  .lsretailtab-pane {
      width: 90%;
      max-width: 400px;
  }
}



/* logo showcase starts here */

.scrollable-logos1 {
  margin-top: 2rem;
  margin-bottom: 2rem;
  overflow: hidden;
}

.scrollable-heading1 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.scroll-container1 {
  overflow: hidden;
  width: 100%;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.scroll-wrapper1 {
  display: flex;
  gap: 40px;
  animation: scrollRightToLeft 60s linear infinite;
  width: max-content;
  overflow: hidden;
  margin: 0 auto;
  padding: 20px 0;
  position: relative;
}

.Scroll_logo1 img {
  height: 6rem;
  width: auto;
  display: block;
  object-fit: contain;
}

@keyframes scrollRightToLeft {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}



/* logo showcase ends here */

.LS_retail_second {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  width: 80%;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
  border-radius: 50px;
  margin-top: -5rem;
}

.LS_retail_second h1 {
  color: #000000;
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.second_buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  
}

.second_buttons button {
  background: linear-gradient(135deg, #a3cdf9, #f8f8f8);
  color: #000000;
  font-size: 1.5rem;
  padding: 10px 20px;
  border: 1px solid var(--primary-color);
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.second_buttons button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.LS_retail_second h2 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 5px;
  font-weight: bold;
}

.LS_retail_second p {
  font-size: 20px;
  color: #000000;
  text-align: center;
  padding: 0 20px;
  margin-bottom: 5px;
}


/* Domo welcome page starts here */

.Domo-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  margin: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.Domo-section:hover {
  transform: translateY(-5px);
}

.Domo_content {
  max-width: 50%;
  order: 2; 
  padding-left: 20px; 
  color: #000000;
}

.Domo_logo {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
  margin-left: 11rem;
}

.Domo_logo:hover {
  transform: scale(1.1);
}

h1 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #333;
  position: relative;
  display: inline-block;
}

h1::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  /* background-color: var(--secondary-color); */
  transition: width 0.3s ease;
}

h1:hover::after {
  width: 100%;
}

 .Domo-section p {
  font-size: 14px;
  color: #000000;
  margin-bottom: 30px;
  line-height: 1.6;
}

.Domo_demo-button {
  background-color:var(--primary-color);
  color: #ffffff;
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 17px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.Domo_demo-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.Domo_demo-button:hover {
  background-color: var(--primary-color);
  box-shadow: 0 5px 15px rgba(239, 123, 0, 0.4);
}

.Domo_demo-button:hover::before {
  width: 300px;
  height: 300px;
}

.Domo_image-container {
  max-width: 55%;
  position: relative;
  order: 1; /* Place image first */
  margin-right: 20px;
}

.Domo_dashboard-image {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
  border-radius: 30px;
}

.Domo_dashboard-image:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .Domo-section {
    flex-direction: column;
    text-align: center;
  }

  .Domo_content, .Domo_image-container {
    max-width: 100%;
  }

  .Domo_image-container {
    margin-top: 30px;
  }
}
/* Domo welcome page ends here */

/* Domo features starts from here */

/* Features Container */
.Domo_features {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 20px; /* Space between cards */
  padding: 40px 20px;
  overflow-x: auto; /* Horizontal scrolling for smaller screens */
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  margin-top: -6rem;

}

/* Feature Card Styling */
.Domo_card {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  flex: 0 0 250px; /* Cards maintain equal width */
  padding: 40px;
  text-align: center;
  border-radius: 50%; /* Smooth circular design */
  background: linear-gradient(to bottom right, #ffffff, #d9e4f5);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  /* border: 2px solidvar(--primary-color); */
  cursor: pointer;
}

.Domo_card:hover {
  transform: scale(1.1);
  box-shadow: 0 25px 35px rgba(0, 0, 0, 0.2);
  background: linear-gradient(to bottom right, #d9e4f5, #d9e4f5);
}

/* Typography for Feature Card */
.Domo_card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color:var(--primary-color);
}

.Domo_card p {
  font-size: 14px;
  color: #000000;
  margin-bottom: 20px;
}

.Domo_card a {
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  color:var(--primary-color);
  transition: color 0.3s ease;
}

.Domo_card a:hover {
  /* color: #003f8a; */
  text-decoration: underline;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
  .Domo_container {
    gap: 15px;
    padding: 20px;
  }

  .Domo_card {
    flex: 0 0 200px; /* Slightly smaller cards for smaller screens */
  }

  .Domo_card h3 {
    font-size: 18px;
  }

  .Domo_card p {
    font-size: 12px;
  }

  .Domo_card a {
    font-size: 12px;
  }
}
/* Extra Mobile-Friendly Fixes Without Changing Previous CSS */
@media screen and (max-width: 600px) {
  .Domo_features {
    flex-wrap: wrap; /* Allows stacking on smaller screens */
    justify-content: center;
    gap: 15px;
    padding: 20px;
  }

  .Domo_card {
    flex: 0 0 90%; /* Cards take up more width */
    max-width: 320px; /* Ensures a clean mobile layout */
    padding: 20px;
    border-radius: 15px; /* Less curvature for mobile aesthetics */
  }

  .Domo_card h3 {
    font-size: 18px;
  }

  .Domo_card p {
    font-size: 13px;
    line-height: 1.5;
  }

  .Domo_card a {
    font-size: 13px;
  }
}

/* Further Optimization for Very Small Screens (below 480px) */
@media screen and (max-width: 480px) {
  .Domo_features {
    flex-direction: column;
    align-items: center;
  }

  .Domo_card {
    flex: 0 0 95%;
    max-width: 280px;
    padding: 18px;
  }

  .Domo_card h3 {
    font-size: 14px;
  }

  .Domo_card p {
    font-size: 12px;
  }

  .Domo_card a {
    font-size: 12px;
  }
}


/* Domo features ends here */

/* domo integrations starts here */

.diagram-section {
  text-align: center;
  padding: 20px;
  width: 100%;
}

.section-heading {
  font-size: 1.5rem;
  color: #000000;
  margin-bottom: 20px;
}

.diagram-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.center-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  
}
/* domo integrations ends here */

/* insight software  welcome page starts here */

.insight_software-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  margin: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* margin-top: -2rem; */
}

.insight_software-section:hover {
  transform: translateY(-5px);
}

.insight_software_content {
  max-width: 50%;
}

.insight_software_logo {
  width: 300px;
  height: 300px;
  height: auto;
  margin-bottom: 20px;
  transition: transform 0.3s ease;

  
}

.insight_software_logo.large-logo {
  width: 300px;  /* Enlarge the logo */
  height: 200px; /* Enlarge the logo */
  
}

.insight_software_logo:hover {
  transform: scale(1.1);
}

.insight_software-section h1 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #000000;
  position: relative;
  display: inline-block;
}

.insight_software-section h1::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  /* background-color: var(--primary-color)); */
  transition: width 0.3s ease;
}

.insight_software-section h1:hover::after {
  width: 100%;
}

.insight_software-section p {
  font-size: 14px;
  color: #000000;
  margin-bottom: 30px;
  line-height: 1.6;
}

.insight_software_demo-button {
  background-color: var(--secondary-color);
  color: #ffffff;
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 17px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.insight_software_demo-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.insight_software_demo-button:hover {
  background-color: var(--primary-color);
  box-shadow: 0 5px 15px rgba(0, 163, 239, 0.4);
}

.insight_software_demo-button:hover::before {
  width: 300px;
  height: 300px;
}

.insight_software_image-container {
  max-width: 55%;
  position: relative;
  margin-right: 20px;
  border-radius: 30px;
}

.insight_software_dashboard-image {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
  border-radius: 30px;
}

.insight_software_dashboard-image:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .insight_software-section {
      flex-direction: column;
      text-align: center;
  }

  .insight_software_content, .insight_software_image-container {
      max-width: 100%;
  }

  .insight_software_image-container {
      margin-top: 30px;
  }
}
/* Insight Welcome Page Ends Here */

/* insight software  second  page starts here */

/* Container styling */
.insight__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  color: #000;
  margin-top: -4rem;
}

.insight_header {
  text-align: center;
  margin-bottom: 3rem;
}

.insight_header h1 {
  color: #000;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.insight_underline {
  text-decoration: underline;
  color: VAR(--PRIMARY-COLOR);
}

.insight_tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.insight_tab-button {
  background: transparent;
  border: 1px solid #000;
  color: #000;
  padding: 1rem 1rem;
  font-size: 14px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 200px;
  text-align: center;
}

.insight_tab-button.active {
  background-color: var(--primary-color);
  color: #fff;
  border: 2px solid var(--primary-color);
}

.insight_tab-button:hover {
  background-color: var(--primary-color);
  color: #fff;
  border: 2px solid var(--primary-color);
}

.insight_tab-content {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.insight_tab-pane {
  display: none;
  color: #000;
  max-width: 800px;
  font-size: 14px;
  text-align: center;
  margin: 1rem;
}

.insight_tab-pane.active {
  display: block;
}

@media (max-width: 768px) {
  .insight_header h1 {
      font-size: 1.5rem;
  }

  .insight_tabs {
      flex-direction: column;
      gap: 1rem;
  }

  .insight_tab-content {
      flex-direction: column;
      align-items: center;
  }

  .insight_tab-pane {
      width: 90%;
      max-width: 400px;
  }
}


/* insight software  second  page ends here */

/* right angle welcome page section starts from here */

/* .right_container {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px;
  position: relative;
  overflow: hidden;
  height: 100vh;
  width: 100%;
  background: #ffffff;

}

.right_logo {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 20%; 
  height: auto;


}

.right_content {
  width: 50%;
  text-align: left;
  justify-items: start;

}

.right_container h1 {
  font-size: 20px;
  margin-bottom: 40px;

}

.right_container p {
  font-size: 14px;
  margin-bottom: 50px;

}

.right_buttons {
  display: flex;
  gap: 20px;


}

.right_btn {
  padding: 10px 20px;
  border: none;
  font-size: 14px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
  background-color: #ffffff;
  color: #000000;
  border: 1px solid #007afc;
  margin-top: auto;
  
}

.right_btn:hover {
  background-color: #95c4f6;
  color: #000000;

}


.right_image-section {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;


}

.right-image {
  width: 100%;
  
  
  
} */

/* right angle welcome page ends here */


/* Amicis Retail welcome page starts here */

.amicis-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  margin: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amicis-section:hover {
  transform: translateY(-5px);
}

.amicis_content {
  max-width: 50%;
  order: 2; 
  padding-left: 20px; 
  color: #000000;
}

.amicis_logo {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
  margin-left: 11rem;
}

.amicis_logo:hover {
  transform: scale(1.1);
}

h1 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #333;
  position: relative;
  display: inline-block;
}

h1::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  /* background-color: var(--secondary-color); */
  transition: width 0.3s ease;
}

h1:hover::after {
  width: 100%;
}

 .amicis-section p {
  font-size: 14px;
  color: #000000;
  margin-bottom: 30px;
  line-height: 1.6;
}

.amicis_demo-button {
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 17px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.amicis_demo-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.amicis_demo-button:hover {
  background-color: var(--primary-color);
  box-shadow: 0 5px 15px rgba(239, 123, 0, 0.4);
}

.amicis_demo-button:hover::before {
  width: 300px;
  height: 300px;
}

.amicis_image-container {
  max-width: 55%;
  position: relative;
  order: 1; /* Place image first */
  margin-right: 20px;
}

.amicis_dashboard-image {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
  border-radius: 30px;
}

.amicis_dashboard-image:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .amicis-section {
    flex-direction: column;
    text-align: center;
  }

  .amicis_content, .amicis_image-container {
    max-width: 100%;
  }

  .amicis_image-container {
    margin-top: 30px;
  }
}
/* Amicis Retail welcome page ends here */

.amicis__container { 
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  color: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -4rem;
}

/* Header section */
.amicis_header {
  text-align: center;
  margin-bottom: 3rem;
}

.amicis_header h1 {
  color: #000000;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.amicis_underline {
  text-decoration: underline;
  color: var(--primary-color); /* Tomato color for emphasis */
}

/* Tab buttons styling */
.amicis_tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.amicis_tab-button {
  background: transparent;
  border: 1px solid #000000;
  color: #000000;
  padding: 1rem;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 200px;
  text-align: center;
}

.amicis_tab-button.active {
  background-color: var(--primary-color); /* Tomato color for active state */
  color: #ffffff;
  border: 2px solid var(--primary-color);
}

.amicis_tab-button:hover {
  background-color: var(--primary-color);
  color: #000000;
  border: 2px solid var(--primary-color);
}

/* Tab content styling */
.amicis_tab-content {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.amicis_tab-pane {
  display: none;
  color: #000000;
  max-width: 800px;
  font-size: 14px;
  text-align: center;
  margin: 1rem;
}

.amicis_tab-pane.active {
  display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
  .amicis_header h1 {
    font-size: 1.5rem;
  }

  .amicis_tabs {
    flex-direction: column;
    gap: 1rem;
  }

  .amicis_tab-content {
    flex-direction: column;
    align-items: center;
  }

  .amicis_tab-pane {
    width: 90%;
    max-width: 400px;
  }
}

@media (max-width: 480px) {
  .amicis_tabs {
    gap: 0.5rem;
  }

  .amicis_tab-button {
    font-size: 0.9rem;
    width: 100%;
  }

  .amicis_tab-content {
    gap: 1rem;
  }
}


/* amicis features ends here */

/* continia welcome page startrs here */

.continia-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  margin: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* margin-top: -2rem; */
}

.continia-section:hover {
  transform: translateY(-5px);
}

.continia_content {
  max-width: 50%;
}

.continia_logo {
  width: 300px;
  height: 300px;
  height: auto;
  margin-bottom: 20px;
  transition: transform 0.3s ease;

  
}

.continia_logo.large-logo {
  width: 300px;  /* Enlarge the logo */
  height: 200px; /* Enlarge the logo */
  
}

.continia_logo:hover {
  transform: scale(1.1);
}

.continia-section h1 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #000000;
  position: relative;
  display: inline-block;
}

.continia-section h1::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  /* background-color: var(--primary-color)); */
  transition: width 0.3s ease;
}

.continia-section h1:hover::after {
  width: 100%;
}

.continia-section p {
  font-size: 14px;
  color: #000000;
  margin-bottom: 30px;
  line-height: 1.6;
}

.continia_demo-button {
  background-color: var(--secondary-color);
  color: #ffffff;
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 17px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.continia_demo-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.continia_demo-button:hover {
  background-color: var(--primary-color);
  box-shadow: 0 5px 15px rgba(0, 163, 239, 0.4);
}

.continia_demo-button:hover::before {
  width: 300px;
  height: 300px;
}

.continia_image-container {
  max-width: 55%;
  position: relative;
  margin-right: 20px;
  border-radius: 30px;
}

.continia_dashboard-image {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
  border-radius: 30px;
}

.continia_dashboard-image:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .continia-section {
      flex-direction: column;
      text-align: center;
  }

  .continia_content, .continia_image-container {
      max-width: 100%;
  }

  .continia_image-container {
      margin-top: 30px;
  }
}


/* continia welcome page ends here */

/* continia solutions starts from here */

.solution_benefit {
  text-align: center;
  padding: 20px;
  /* border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
  max-width: 900px;
  margin: 20px auto;
  margin-top: 2rem;
  background-color: aliceblue;
}

/* Styling the heading */
#solution_heading {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
  transition: color 0.3s ease;
  
}

/* Styling the image */
#benefitImage2 {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  margin-top: -3rem;
}

/* Add hover effect */
#solution_heading:hover {
  color: var(--primary-color); /* Example highlight color */
}

#benefitImage2:hover {
  transform: scale(1.05);
  opacity: 0.9;
}


/* continia solutions ends here */



/* netronic manifacturing  welcome page starts from here */

.netronic-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  margin: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.netronic-section:hover {
  transform: translateY(-5px);
}

.netronic_content {
  max-width: 50%;
  order: 2; 
  padding-left: 20px; 
  color: #000000;
}

.netronic_logo {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
  margin-left: 11rem;
}

.netronic_logo:hover {
  transform: scale(1.1);
}

h1 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #333;
  position: relative;
  display: inline-block;

}

h1::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  /* background-color: var(--secondary-color); */
  transition: width 0.3s ease;
}

h1:hover::after {
  width: 100%;
}

 .netronic-section p {
  font-size: 14px;
  color: #000000;
  margin-bottom: 30px;
  line-height: 1.6;
}

.netronic_demo-button {
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 17px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.netronic_demo-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.netronic_demo-button:hover {
  background-color: var(--primary-color);
  box-shadow: 0 5px 15px rgba(239, 123, 0, 0.4);
}

.netronic_demo-button:hover::before {
  width: 300px;
  height: 300px;
}

.netronic_image-container {
  max-width: 55%;
  position: relative;
  order: 1; /* Place image first */
  margin-right: 20px;
}

.netronic_dashboard-image {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
  border-radius: 30px;
}

.netronic_dashboard-image:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .netronic-section {
    flex-direction: column;
    text-align: center;
  }

  .netronic_content, .netronic_image-container {
    max-width: 100%;
  }

  .netronic_image-container {
    margin-top: 30px;
  }
}

/* netronic manifacturing  welcome page ends here */

/* netronic manifacturing Use case starts from here */

.netronic__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  color: #000000;
  margin-top: -4rem;
}

.netronic__header {
  text-align: center;
  margin-bottom: 3rem;
}

.netronic__header h1 {
  color: #000000;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.netronic__underline {
  text-decoration: underline;
  color: var(--primary-color);
}

.netronic__tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.netronic__tab-button {
  background: transparent;
  border: 1px solid var(--primary-color);
  color: #000000;
  padding: 1rem;
  font-size: 14px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 200px;
  text-align: center;
}

.netronic__tab-button.active {
  background-color: var(--primary-color);
  color: #000000;
  border: 2px solid #000000;
}

.netronic__tab-button:hover {
  background-color: var(--primary-color);
  color: #000000;
  border: 2px solid #000000;
}

.netronic__tab-content {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.netronic__tab-pane {
  display: none;
  color: #000000;
  max-width: 800px;
  font-size: 14px;
  text-align: center;
  margin: 1rem;
}

.netronic__tab-pane.active {
  display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
  .netronic__header h1 {
      font-size: 1.5rem;
  }

  .netronic__tabs {
      flex-direction: column;
      gap: 1rem;
  }

  .netronic__tab-content {
      flex-direction: column;
      align-items: center;
  }

  .netronic__tab-pane {
      width: 90%;
      max-width: 400px;
  }
}


/* netronic manifacturing Use case ends here */


/*  how we work */

.HowWeWork_container {
  width: 100%;
  margin: 0 auto;
  padding: 4rem 2rem;
  color: #000000;
  background-color: #ffffff;
  text-align: center;
   font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.HowWeWork_main-title {
  color: rgb(0, 0, 0);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  align-items: center;
  margin-top: -1rem;
}

.HowWeWork_intro-text {
  color: rgb(0, 0, 0);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 1rem;
  align-items: center;
}

.HowWeWork_steps-container {
  position: relative;
  padding-top: 1rem;
}

.HowWeWork_step-card {
  position: relative;
  background: var(--secondary-color);
  padding: 1.5rem;
  border-radius: 1.5rem;
  max-width: 320px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.HowWeWork_step-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #000;
  line-height: 1.4;
  text-align: left;
}

.HowWeWork_step-card p {
  color: #000000;
  margin-bottom: 1rem;
  font-size: 14px;
  line-height: 1.4;
  text-align: left;
}

.HowWeWork_time-badge {

  display: inline-block;
  background-color: black;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  position: absolute;
  bottom: -1rem;
  left: 0.5rem;
}

.HowWeWork_step-label {
  position: absolute;
  top: -2rem;
  right: 1rem;
  background-color:transparent;
  color: rgb(255, 255, 255);
  font-size: 14px;
  font-weight: bold;
}

/* Positioning for each step */
#step1 {
  margin-left: 0px;
  margin-top: 2rem;
  z-index: 4;
} 

#step2 {
  margin-left: 350px;
  margin-top: -10rem;
  z-index: 3;
}

#step3 {
  margin-left: 700px;
  margin-top: -9rem;
  z-index: 2;
}

#step4 {
  margin-left: 1050px;
  margin-top: -9rem;
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
  #step2 { margin-left: 50px; }
  #step3 { margin-left: 100px; }
  #step4 { margin-left: 150px; }
}

@media (max-width: 768px) {

  h1 {
      font-size: 1.5rem;
  }

  .HowWeWork_step-card {
      margin-left: 0 !important;
      margin-top: 1rem !important;
      max-width: 100%;
  }

  .HowWeWork_intro-text {
      font-size: 14px;
  }
}
/* how we work section ends here  */

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--text-primary);
    padding: 4rem 0 var(--spacing-xl);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.footer-section .nav-logo {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    /* gap: var(--spacing-sm); */
}



.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: var(--spacing-lg);
    color: var(--text-secondary);

}

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--text-dark);
    border-radius: 50%;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 24px var(--shadow-light);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.partner-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.partner-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 0.75rem;
    background: var(--glass-bg);
    border: 1px solid var(--text-dark);
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.partner-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px var(--shadow-light);
}

.partner-logo i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.contact-info p {
    margin-bottom: var(--spacing-sm);
    font-size: 0.9rem;
}

.contact-info i {
    color: var(--accent-color);
    margin-right: var(--spacing-sm);
}

.footer-bottom {
    border-top: 1px solid var(--text-dark);
    margin-top: 3rem;
    padding-top: var(--spacing-xl);
    text-align: center;
    opacity: 0.7;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
    z-index: 1;
    transition: var(--transition-smooth);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    animation: ripple-animation 0.6s linear;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    width: 100px; /* Default size */
    height: 100px; /* Default size */
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Mobile and Tablet Responsive Styles */
@media (max-width: 1024px) {
    .mega-dropdown {
        min-width: 600px;
    }
    
    .mega-dropdown-content {
        min-height: 300px;
    }
    
    .items-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-menu {
        gap: var(--spacing-lg);
    }
    /* .navbar {
    position: fixed;
    top: -15x;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--spacing-md) 0;
    transition: var(--transition-smooth);
    transform: translateY(0);
} */
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    /* Hide desktop mega dropdown on mobile */
    .mega-dropdown {
        display: none;
    }
    
    /* Show mobile submenu */
    .mobile-submenu {
        display: block;
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        border-radius: var(--border-radius);
        margin-top: var(--spacing-sm);
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        transition: var(--transition-smooth);
    }
    
    .technologies-dropdown.active .mobile-submenu {
        max-height: 800px;
        opacity: 1;
        padding: var(--spacing-md);
    }
    
    .nav-menu {
        position: fixed;
        top: -15px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        transform: translateX(-100%);
        transition: var(--transition-smooth);
        z-index: 999;
        padding-top: 3rem;
        overflow-y: hidden;
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
        height: 100vh;
        padding-bottom: 100px; /* Space for scrolling */
        box-shadow: 0 8px 32px var(--shadow-light);
        /* overflow-x: hidden; */
    }
    
    .nav-menu.open {
        transform: translateX(0);
    }
    .nav-menu.hidden {
        transform: translateX(-100%);
    }
    
    .nav-menu.active {
        transform: translateX(0);
        overflow-y: hidden;
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
  height: 100vh;
  padding-bottom: 100px; /* Space for scrolling */
background-color: var(--secondary-color);
overflow-x: hidden;
    }
    
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--glass-border);
    }
    
    .nav-link {
        justify-content: flex-start;
        padding: var(--spacing-lg) var(--spacing-xl);
        font-size: 1.1rem;
        width: 100%;
        border-radius: 0;
        text-align: left;
    }
    
    /* Mobile Category Styles */
    .mobile-category {
        margin-bottom: var(--spacing-md);
    }
    
    .mobile-category:last-child {
        margin-bottom: 0;
    }
    
    .mobile-category-toggle {
        width: 100%;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--glass-border);
        border-radius: 8px;
        color: var(--text-primary);
        padding: var(--spacing-md);
        font-size: 1rem;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: var(--spacing-sm);
        cursor: pointer;
        transition: var(--transition-smooth);
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    }
    
    .mobile-category-toggle:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .mobile-category-toggle.active {
        background: rgba(255, 255, 255, 0.15);
    }
    
    .mobile-arrow {
        margin-left: auto;
        font-size: 0.8rem;
        transition: var(--transition-smooth);
    }
    
    .mobile-category-toggle.active .mobile-arrow {
        transform: rotate(180deg);
    }
    
    .mobile-category-items {
        max-height: 0;
        overflow: hidden;
        transition: var(--transition-smooth);
        background: rgba(255, 255, 255, 0.02);
        border-radius: 8px;
        margin-top: var(--spacing-sm);
    }
    
    .mobile-category-items.active {
        max-height: 500px;
        padding: var(--spacing-sm);
    }
    
    .mobile-item-link {
        display: flex;
        align-items: center;
        gap: var(--spacing-sm);
        color: var(--text-secondary);
        text-decoration: none;
        padding: var(--spacing-sm) var(--spacing-md);
        border-radius: 6px;
        transition: var(--transition-smooth);
        font-size: 0.9rem;
        margin-bottom: var(--spacing-xs);
    }
    
    .mobile-item-link:hover {
        color: var(--text-primary);
        background: rgba(255, 255, 255, 0.1);
        transform: translateX(5px);
    }
    
    .mobile-item-link i {
        color: var(--accent-color);
        font-size: 0.8rem;
        width: 16px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .partner-logos {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-container {
        padding: 0.75rem var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.875rem var(--spacing-xl);
        font-size: 1rem;
    }
    
    .content-section {
        padding: 4rem 0;
    }
    
    .content-section h2 {
        font-size: 2rem;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: var(--spacing-md) var(--spacing-lg);
    }
    
    .mobile-category-toggle {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 15px;
    }
    
    .mobile-item-link {
        padding: var(--spacing-xs) var(--spacing-sm);
        font-size: 0.85rem;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --glass-bg: rgba(255, 255, 255, 0.2);
        --glass-border: rgba(255, 255, 255, 0.4);
        --shadow-light: rgba(0, 0, 0, 0.5);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
}