/* General Body and Main Container  */
body {
  font-family: "Mulish", sans-serif;
  line-height: 1.6;
  color: #333;
  margin: 0;
  padding: 0;
  background-color: #f8f8f8;
  overflow-x: hidden;
}

main {
  padding-top: 80px;
  margin: 0 auto;
}

h1,
h2,
h3 {
  font-weight: 700;
  color: #2c3e50;
}

p {
  color: #555;
  font-weight: 400;
}

.section-tag {
  display: inline-block;
  font-size: 0.85em;
  font-weight: 700;
  color: #007bff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  background-color: rgba(0, 123, 255, 0.1);
  padding: 5px 12px;
  border-radius: 20px;
}

.section-header-centered {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
  padding: 0 20px;
}

.section-header-centered h2 {
  font-size: 2.8em;
  margin-bottom: 20px;
}

.section-intro-paragraph {
  font-size: 1.2em;
  color: #666;
}

/* Reusable Button Styles */
.button-hero-option4,
.button-read-more,
.button-primary-cta-option4 {
  display: inline-block;
  padding: 8px 30px;
  border-radius: 8px;
  font-size: 1em;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.button-hero-option4 {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.button-hero-option4:hover {
  background-color: rgba(255, 255, 255, 0.3);
  border-color: #fff;
  transform: translateY(-2px);
}

.button-read-more {
  background-color: transparent;
  color: #007bff;
  border: 2px solid #007bff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.button-read-more:hover {
  background-color: #007bff;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.2);
}

.button-read-more i {
  margin-left: 10px;
}

.button-primary-cta-option4 {
  background-color: #007bff;
  color: #fff;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2);
}

.button-primary-cta-option4:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.3);
}

/* --- Video Hero Section --- */
.video-hero-sleek {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  margin-bottom: 80px;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
}

.video-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 123, 255, 0.7),
    rgba(0, 50, 100, 0.7)
  );
  z-index: 1;
}

.video-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

.video-hero-content h1 {
  font-size: 4.5em;
  margin-bottom: 25px;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.video-hero-content p {
  font-size: 1.6em;
  font-weight: 300;
  opacity: 0.9;
  color: #eee;
  margin-bottom: 50px;
}

/* --- Feature-section-home --- */
.feature-section-home {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 100px auto;
  padding: 40px 20px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  gap: 50px;
}

.feature-section-home.alternate-bg {
  background-color: #eaf6ff;
}

.feature-content-left,
.feature-content-right {
  flex: 1;
  text-align: center;
}

.feature-content-left h2,
.feature-content-right h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.feature-content-left p,
.feature-content-right p {
  font-size: 1.1em;
  margin-bottom: 25px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.feature-icon-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
  background-color: #d6e2ee;
  border-radius: 10px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 15px;
}

.feature-icon {
  font-size: 2.2em;
  color: #007bff;
  flex-shrink: 0;
}

.feature-image-left,
.feature-image-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-image-left img,
.feature-image-right img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* --- Call to Action / Get a Quote Section --- */
.cta-home-option4 {
  background: linear-gradient(rgba(0, 50, 100, 0.95), rgba(0, 100, 200, 0.95)),
    url("assets/cta-bg-option4.jpg") no-repeat center center/cover;
  background-attachment: fixed;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  border-radius: 12px;
  max-width: 1100px;
  margin: 0 auto 80px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cta-content-option4 {
  max-width: 800px;
  margin: 0 auto;
}

.cta-home-option4 h2 {
  font-size: 3.2em;
  margin-bottom: 25px;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.cta-home-option4 p {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #e0e0e0;
  opacity: 0.9;
}

.cta-home-variant {
  background: linear-gradient(rgba(0, 50, 100, 0.9), rgba(0, 100, 200, 0.9)),
    url("assets/cta-bg-variant.jpg") no-repeat center center/cover;
  background-attachment: fixed;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  border-radius: 12px;
  max-width: 1100px;
  margin: 0 auto 80px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cta-content-variant {
  max-width: 800px;
  margin: 0 auto;
}

.cta-home-variant h2 {
  font-size: 3em;
  margin-bottom: 25px;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.cta-home-variant p {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #e0e0e0;
  opacity: 0.9;
}

/* --- Feature Section: Paragraph with Photo --- */
.feature-photo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 100px auto;
  padding: 40px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  gap: 60px;
}

.feature-content {
  flex: 1;
  text-align: center;
}

.feature-content h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.feature-content p {
  font-size: 1.1em;
  margin-bottom: 15px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.feature-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Product Overview Grid (Icon Features) */
.product-overview-grid-section {
  max-width: 1200px;
  margin: 0 auto 100px auto;
  padding: 0 20px;
}

.product-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;
  align-items: stretch;
}

.overview-item {
  background-color: #f0f8ff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 4px solid #007bff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.overview-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.overview-item i {
  font-size: 3.5em;
  color: #007bff;
  margin-bottom: 20px;
}

.overview-item h3 {
  font-size: 1.7em;
  margin-bottom: 15px;
  color: #2c3e50;
}

.overview-item p {
  font-size: 1em;
  color: #666;
  line-height: 1.6;
}

/* Solution Introduction Section */
.solution-intro-section {
  max-width: 1000px;
  margin: 0 auto 100px auto;
  padding: 0 20px;
  text-align: center;
}

/* Solution Categories Section */
.solution-categories-container {
  max-width: 1200px;
  margin: 0 auto 100px auto;
  padding: 0 20px;
}

.solution-category {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  padding: 50px;
  margin-bottom: 80px;
}

.solution-category.alternate-background {
  background-color: #f8f8f8;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.solution-category .category-header {
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(0, 123, 255, 0.1);
}

.solution-category .category-header i {
  font-size: 4em;
  color: #007bff;
  margin-bottom: 20px;
}

.solution-category .category-header h3 {
  font-size: 2.5em;
  color: #2c3e50;
  margin-bottom: 15px;
  margin-top: 0;
}

.solution-category .category-header p {
  font-size: 1.2em;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;
}

.category-grid-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.solution-category.alternate-background .category-grid-item {
  background-color: #fff;
}

.category-grid-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.category-grid-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #eee;
}

.category-grid-item h4 {
  font-size: 1.6em;
  color: #2c3e50;
  margin: 20px 20px 10px;
}

.category-grid-item p {
  font-size: 0.95em;
  color: #555;
  line-height: 1.7;
  padding: 0 20px 25px;
  flex-grow: 1;
}

/* --- Final Small Section --- */
.final-section {
  max-width: 800px;
  margin: 0 auto 80px auto;
  padding: 40px 20px;
  background-color: #f0f0f0;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.final-section h3 {
  font-size: 2em;
  margin-bottom: 15px;
  color: #007bff;
}

.final-section p {
  font-size: 1.1em;
  color: #444;
}

/* --- About Product Page Specific Styles (aboutProduct.css) --- */

/* AMPLO Core Modules Showcase */
.amplo-modules-showcase {
  max-width: 1400px;
  margin: 0 auto 100px auto;
  padding: 0 20px;
}

.amplo-module {
  display: flex;
  align-items: center;
  gap: 80px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  padding: 60px;
  margin-top: 100px;
  margin-bottom: 70px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 8px solid #007bff;
}

.amplo-module.reverse {
  flex-direction: row-reverse;
  border-right: 8px solid #007bff;
  border-left: none;
}

.amplo-module:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.module-text-content {
  flex: 1;
  padding-right: 20px;
}

.amplo-module.reverse .module-text-content {
  padding-left: 20px;
  padding-right: 0;
}

.module-image-content {
  flex: 1;
  text-align: center;
}

.module-image-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.module-icon {
  font-size: 4em; /* Larger icons */
  color: #007bff;
  margin-bottom: 25px;
  display: block;
}

.module-text-content h3 {
  font-size: 2.8em; /* Larger module titles */
  color: #333;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.module-text-content p {
  font-size: 1.2em; /* Larger body text */
  line-height: 1.7;
  color: #555;
  margin-bottom: 30px;
}

.module-learn-more {
  display: inline-block;
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.module-learn-more:hover {
  color: #0056b3;
}

.module-learn-more i {
  margin-left: 8px;
  transition: margin-left 0.3s ease;
}

.module-learn-more:hover i {
  margin-left: 12px;
}

/* Product Overview Section */
.product-overview-section {
  max-width: 1200px;
  margin: 0 auto 100px auto;
  padding: 0 20px;
}

.overview-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

.overview-text-block {
  padding-right: 20px;
}

.overview-text-block h3 {
  font-size: 2.2em;
  color: #333;
  margin-bottom: 25px;
  font-weight: 700;
}

.overview-text-block p {
  font-size: 1.1em;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

.overview-image-block {
  text-align: center;
}

.overview-item a {
  text-decoration: none;
}

.overview-image-block img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transform: rotate3d(0, 1, 0, 8deg);
  transition: transform 0.3s ease;
}

.overview-image-block img:hover {
  transform: rotate3d(0, 1, 0, 0deg);
}

/* Key Features Section */
.key-features-section {
  background-color: #f8faff;
  padding: 80px 20px;
  margin-bottom: 100px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 60px auto 0 auto;
}

.feature-card {
  background-color: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid transparent;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-top-color: #007bff;
}

.feature-icon {
  font-size: 3.5em;
  color: #007bff;
  margin-bottom: 25px;
  display: block;
}

.feature-card h3 {
  font-size: 1.6em;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

.feature-card p {
  font-size: 1em;
  color: #666;
  line-height: 1.6;
}

/* How It Works / Process Section */
.how-it-works-section {
  max-width: 1200px;
  margin: 0 auto 100px auto;
  padding: 0 20px;
}

.process-steps-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.process-step {
  flex: 1;
  min-width: 220px;
  text-align: center;
  position: relative;
  padding: 10px;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50px;
  right: -40px;
  width: 80px;
  height: 2px;
  background-color: #ddd;
  z-index: 1;
  transform: translateY(-50%);
}

.process-step:nth-child(even):not(:last-child)::after {
  background: linear-gradient(to right, #ddd, #007bff);
}
.process-step:nth-child(odd):not(:last-child)::after {
  background: linear-gradient(to right, #007bff, #ddd);
}

.step-icon-wrapper {
  position: relative;
  z-index: 2;
  margin-bottom: 25px;
}

.icon-circle {
  font-size: 1.8em;
  width: 60px;
  height: 60px;
  background-color: #007bff;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
  border: 4px solid #fff;
}

.process-step h3 {
  font-size: 1.4em;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

.process-step p {
  font-size: 0.95em;
  color: #666;
  line-height: 1.6;
}

/* Product Testimonial Section */
.product-testimonial-section {
  background: linear-gradient(
    135deg,
    rgba(39, 60, 117, 0.95),
    rgba(0, 123, 255, 0.85)
  );
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 100px;
}

.testimonial-content {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-content .quote-icon {
  font-size: 3em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.testimonial-content p {
  font-size: 1.8em;
  line-height: 1.5;
  font-weight: 300;
  margin-bottom: 30px;
  quotes: "“" "”" "‘" "’";
}

.testimonial-content p::before {
  content: open-quote;
  font-size: 1.5em;
  vertical-align: top;
  line-height: 0.8;
  margin-right: 5px;
}

.testimonial-content p::after {
  content: close-quote;
  font-size: 1.5em;
  vertical-align: bottom;
  line-height: 0.8;
  margin-left: 5px;
}

.testimonial-content cite {
  font-size: 1.1em;
  font-style: normal;
  font-weight: 600;
  color: #ffc107;
  display: block;
  margin-top: 20px;
}



/* Main Product Cards Section */
.main-products-section {
  max-width: 1200px;
  margin: 0 auto 100px auto;
  padding: 0 20px;
}

.product-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  justify-content: center;
  align-items: stretch;
}

.product-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.product-card-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.05);
}

.product-card-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #007bff;
  color: #fff;
  padding: 6px 15px;
  border-radius: 5px;
  font-size: 0.85em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-card-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card-content h3 {
  font-size: 2em;
  color: #2c3e50;
  margin-bottom: 10px;
}

.product-tagline {
  font-size: 1.1em;
  color: #007bff;
  font-weight: 600;
  margin-bottom: 20px;
}

.product-description {
  font-size: 0.95em;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
  flex-grow: 1;
}

.product-features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.product-features-list li {
  font-size: 0.9em;
  color: #333;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-features-list li i {
  color: #28a745;
  font-size: 1.1em;
}

.button-secondary-product {
  display: inline-block;
  background-color: #eaf6ff;
  color: #007bff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  text-align: center;
  border: 2px solid #007bff;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.1);
}

.button-secondary-product:hover {
  background-color: #007bff;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

.section-header-centered {
  margin-top: 5rem;
}




/* --- Counting numbers --- */

.numbers {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 100px;
    margin-top: 60px;
}

.section-tag {
  margin: 0 auto;
}

.numbers h1{
    align-items: center;
    justify-content: center;
    display: flex;
    font-size: 2.5em;
    margin-bottom: 20px;
    line-height: 1.2;
}

.numbers p {
    align-items: center;
    justify-content: center;
    display: flex;
    font-size: 1.3em;
    margin-bottom: 20px;
    line-height: 1.2;
}

.D {
    margin-top: 60px;
    display: flex;
    justify-content: space-evenly;
}

.counter {
    font-size: 4rem;
    color: black;
    align-items: center;
    justify-content: center;
    display: flex;
}

.counter-name {
    font-size: 1.5rem;
    color: black;
    align-items: center;
    justify-content: center;
    display: flex;
}


/* --- Clients invoved  --- */
.clients {
    margin: 0 auto;
    margin-bottom: 100px;
    margin-top: 60px;
    text-align: center;
}

.clients h1 {
    display: flex;
    justify-content: center;
    font-size: 2.5em;
    margin-bottom: 20px;
    line-height: 1.2;
}

.clients p {
    max-width: 1000px;
    display: flex;
    justify-content: center;
    font-size: 1.3em;
    margin-bottom: 20px;
    line-height: 1.2;
    margin: 0 auto;
}

.logo-line {
    margin-top: 60px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    overflow: hidden ;
    position: relative;
    width: 100%;
    height: 150px;    
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scrollLogos 30s linear infinite;
}

.client-logos {
  flex: 0 0 auto;
  padding: 0 70px;
}

.client-logos img {
  height: 120px; 
  object-fit: contain;
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


.icon-lg {
  font-size: 70px !important;
  color: #007bff;
  margin-top: 30px;
}


@media (min-width: 900px) {
  .cta-home-option4 h2 {
    font-size: 2.8em;
  }
  .cta-home-option4 p {
    font-size: 1.2em;
  }

  .feature-section-home {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .feature-content {
    text-align: left;
    padding-right: 30px;
    order: 1;
  }

  .feature-content p {
    margin-left: 0;
    margin-right: 0;
  }

  .video-hero-content h1 {
    font-size: 3.8em;
  }
  .video-hero-content p {
    font-size: 1.1em;
  }

  .feature-photo-section {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .solution-intro-section,
  .solution-categories-container {
    margin-bottom: 80px;
  }

  .solution-category {
    padding: 40px;
    margin-bottom: 60px;
  }

  .solution-category .category-header h3 {
    font-size: 2em;
  }

  .solution-category .category-header p {
    font-size: 1.1em;
  }

    .product-cards-container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }

  .product-card-image {
    height: 180px;
  }

  .product-card-content {
    padding: 25px;
  }

  .product-card-content h3 {
    font-size: 1.8em;
  }

  .product-description {
    font-size: 0.9em;
  }

}

@media (max-width: 768px) {
  .cta-home-option4 {
    margin-bottom: 80px;
    padding: 0 15px;
  }

  .service-card-option4 {
    padding: 30px;
  }

  .cta-home-option4 h2 {
    font-size: 2.5em;
  }

  .cta-home-option4 p {
    font-size: 1.1em;
  }

  .video-hero-sleek {
    height: 450px;
  }
  .video-hero-content h1 {
    font-size: 3.2em;
  }
  .video-hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
  }

  .solution-intro-section,
  .solution-categories-container {
    padding: 0 15px;
    margin-bottom: 60px;
  }

  .solution-category {
    padding: 30px;
    margin-bottom: 50px;
  }

  .solution-category .category-header h3 {
    font-size: 1.8em;
  }

    .main-products-section {
    padding: 0 15px;
  }

  .product-cards-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .product-card-image {
    height: 200px;
  }
}

@media (max-width: 600px) {
  .main-products-section {
    margin-bottom: 0px;
  }

  .cta-home-option4 {
    margin: 15px;
  }

  .cta-home-option4 h2 {
    padding: 10px;
    font-size: 1.5em;
  }

  .cta-home-option4 p {
    font-size: 1em;
  }

  .button-primary-cta-option4 {
    margin: 10px;
  }

  .video-hero-sleek {
    height: 350px;
  }
  .video-hero-content h1 {
    font-size: 2em;
  }
  .video-hero-content p {
    font-size: 0.7em;
    margin-bottom: 25px;
  }

  .solution-category .category-header i {
    font-size: 3.5em;
  }

  .solution-category .category-header h3 {
    font-size: 1.6em;
  }

  .solution-category .category-header p {
    font-size: 0.95em;
  }

  .owner-story-sleek {
    margin-top: 0px;
    margin: 15px;
  }

  .clients h1,
  .counter ,
  .numbers h1,
  .section-header-centered h2,
  .module-text-content h3,
  .feature-content h2,
  .feature-section-home h2,
  .section-header-centered h2 {
    font-size: 2rem;
  }

  .clients p,
  .numbers p,
  .module-text-content p,
  .feature-content p,
  .feature-section-home p,
  .section-header-centered p {
    font-size: 1rem;
  }

  .comparison-table-section,
  .video-hero-sleek,
  .contact-content-sleek,
  .feature-photo-section {
    margin-bottom: 20px;
  }

  .mission-values-sleek,
  .services-grid-home,
  .product-overview-section,
  .solution-intro-section,
  .amplo-modules-showcase,
  .amplo-module,
  .final-section,
  .section-header-centered,
  .section-header-centered h2,
  .feature-section-home.alternate-bg,
  .solution-category,
  .solution-categories-container,
  .product-overview-grid-section {
    margin-bottom: 20px;
    margin-top: 20px;
  }

  .product-card-content h3 {
    margin-top: 0px;
  }

  .feature-photo-section,
  .amplo-module {
    flex-direction: column;
    gap: 0px;
    padding: 20px;
  }

  .module-image-content {
    margin-bottom: 0 !important;
  }

  .module-text-content h3 {
    margin-top: 0px;
  }

  .home-page .product-overview-grid .overview-item:nth-child(4),
  .home-page .product-overview-grid .overview-item:nth-child(6) {
    display: none;
  }

  .numbers .section-tag {
    display: none;
  }

  .logo-line,
  .clients,
  .numbers {
    margin-top: 0;
    margin-bottom: 0;
  }

  .D {
    margin-top: 0;
  }

  .client-logos img {
  height: 80px; 
}

.client-logos {
  flex: 0 0 auto;
  padding: 0 20px;
}

.icon-lg {
  margin-top: 5px;
  font-size: 50px !important;
}

.module-icon {
  display: none !important;
}

.module-text-content .section-tag {
  display: none !important;
}

}

/* Responsive Adjustments for something else, do not remove. Do not add the contents below to the contents above*/
@media (max-width: 992px) {
  .overview-content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .overview-text-block {
    padding-right: 0;
    text-align: center;
  }
  .overview-text-block h3 {
    font-size: 2em;
  }
  .overview-image-block img {
    transform: none;
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
  .feature-card {
    padding: 30px;
  }
  .feature-icon {
    font-size: 3em;
  }
  .feature-card h3 {
    font-size: 1.5em;
  }

  .process-steps-container {
    flex-direction: column;
    align-items: center;
  }
  .process-step {
    flex: none;
    width: 100%;
    max-width: 350px;
  }
  .process-step:not(:last-child)::after {
    content: none;
  }

  /* Add vertical line for stacked steps */
  .process-step:not(:last-child)::before {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    width: 2px;
    height: 40px;
    background-color: #ddd;
    z-index: 1;
    transform: translateX(-50%);
  }

  .testimonial-content p {
    font-size: 1.5em;
  }

  .amplo-module {
    flex-direction: column;
    text-align: center;
    border-left: 8px solid #007bff;
    border-right: none;
  }
  .amplo-module.reverse {
    flex-direction: column;
    border-left: 8px solid #007bff;
    border-right: none;
  }
  .module-text-content,
  .amplo-module.reverse .module-text-content {
    padding: 0;
  }
  .module-image-content {
    order: -1;
    margin-bottom: 30px;
  }
  .module-icon {
    margin: 0 auto 25px auto;
  }
}

@media (max-width: 768px) {
  .product-overview-section,
  .key-features-section,
  .how-it-works-section,
  .product-testimonial-section,
  .cta-product-page {
    padding-left: 15px;
    padding-right: 15px;
  }

  .overview-text-block h3 {
    font-size: 1.8em;
  }
  .overview-text-block p {
    font-size: 1em;
  }

  .feature-card {
    padding: 25px;
  }
  .feature-icon {
    font-size: 2.8em;
  }
  .feature-card h3 {
    font-size: 1.3em;
  }

  .process-step h3 {
    font-size: 1.2em;
  }
  .process-step p {
    font-size: 0.9em;
  }

  .testimonial-content p {
    font-size: 1.3em;
  }
  .testimonial-content cite {
    font-size: 1em;
  }

  .process-steps-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px; 
  }

  .process-step {
    width: 90%; 
    text-align: center;
  }
}

@media (max-width: 480px) {
  .overview-text-block h3 {
    font-size: 1.6em;
  }
  .overview-text-block p {
    font-size: 0.95em;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 20px;
  }
  .feature-icon {
    font-size: 2.5em;
  }
  .feature-card h3 {
    font-size: 1.2em;
  }

  .testimonial-content p {
    font-size: 1.1em;
  }
  .testimonial-content cite {
    font-size: 0.9em;
  }
}
