.hero-section {
    background-color: #444;
    position: relative;
    height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    overflow: hidden;
	  /* Background image properties */
  background-image: url('hero.png');
  background-size: cover; /* Make the image cover the entire area */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Prevent the image from repeating */

}
/* Patents Section */
.technology-overview-patents {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.technology-overview-patents h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
  color: #333;
}

.patent-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.patent-item {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.patent-item h3 {
  font-size: 1.75rem;
  margin-bottom: 10px;
  color: #0ed47e;
}

.patent-item p {
  margin: 5px 0;
  color: #555;
}

.patent-item p strong {
  color: #333;
}

.technology-overview-input-output {
background-color: #0d1a28;
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.technology-overview-input-output h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.5;
}

.technology-overview-input-output .highlight-blue {
  color: #5cb6ff;
}

.technology-overview-input-output .highlight-green {
  color: #0ed47e;
}

.technology-overview-input-output .description {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.75;
  margin: 10px auto; /* Centers the block itself */
  max-width: 800px; /* Optional: limits width for better readability */
  text-align: left; /* Aligns text to the left */
  color: silver;
}
.technology-overview-input-output .highlight-emphasis {
  font-weight: 700; /* Bold */
  font-size: 1.35rem; /* Slightly larger font size */
  color: white; /* Matches the rest of the text */
}


.technology-overview-process {
  background-color: #0d1a28;
  color: #ffffff;
  padding: 60px 20px;
}

.technology-overview-process .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.technology-overview-process .process-step {
  margin-bottom: 30px;
}

.technology-overview-process h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

.technology-overview-process .highlight {
  color: #0ed47e;
}

.technology-overview-process p {
  font-size: 1rem;
  line-height: 1.5;
  color: #c0c0c0;
}

.technology-overview-process hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 20px 0;
}

.technology-overview-process .visual-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.technology-overview-process .images-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 100%;
}

.technology-overview-process .visual-image,
.technology-overview-process .code-sample {
  max-width: 45%; /* Shrinks the images */
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}


.technology-overview-video {
  padding: 60px 20px;
  background-color: #fff; /* Light background to match your site's style */
  color: #212529;
}

.technology-overview-video .headings1 {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
  text-align: center;
}

.technology-overview-video .techboldpara {
  font-size: 1.125rem;
  color: #6c757d;
  text-align: center;
  margin-bottom: 30px;
}

.mainVideo .responsive-video {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.mainVideo .vid_play {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 100px;
  cursor: pointer;
}

.animationSide .imgCont img {
  max-width: 100px;
  margin-right: 10px;
}

.animationSide .inventory {
  font-size: 1.5rem;
  font-weight: bold;
  color: #17a2b8;
  margin-top: 20px;
}

.animationSide .title {
  font-size: 0.875rem;
  color: #212529;
  line-height: 1.5;
  margin-top: 10px;
}
.mainVideo {
  position: relative; /* Ensure the container is positioned */
}

.mainVideo .vid_play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 100px; /* Adjust the size as needed */
  cursor: pointer;
}
/* Right Inventory Section */
.animationSide {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%; /* Matches the height of the parent container */
  padding: 20px;
  background-color: #ffffff; /* Light background for contrast */
  border: 1px solid #ddd; /* Subtle border */
  border-radius: 8px; /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add depth */
  overflow-y: auto; /* Enables scrolling for overflow content */
}

/* Thumbnail Image Styling */
.animationSide .imgCont img {
  max-width: 100%; /* Ensures the image scales */
  height: auto; /* Maintains aspect ratio */
  margin-bottom: 15px; /* Adds spacing */
}

/* Inventory Title Styling */
.animationSide .inventory {
  font-size: 1.5rem; /* Larger and more readable */
  font-weight: bold;
  color: #17a2b8; /* Matches the website's color theme */
  text-align: center;
  margin-bottom: 20px;
}

/* Inventory List Styling */
.animationSide .title p {
  font-size: 1rem;
  line-height: 1.6; /* Improves readability */
  color: #333; /* Neutral text color */
  margin: 5px 0; /* Spacing between items */
}

/* Inventory Scrollable Content */
.animationSide .title {
  flex-grow: 1; /* Ensures the list grows to fill available space */
  overflow-y: auto; /* Scrollable inventory content */
}




