:root {
  --primary-color: #7fffd4;
  --primary-hover: #6ce9c1;
  --primary-light: #7fffd43c;
  --primary-lighter: #7fffd416;
  --primary-transparent: #7fffd4a9;
  --text-dark: #000;
  --text-body: #666;
  --text-heading: #333;
  --background-light: #f8f9fa;
  --background-lighter: #eafff5;
  --footer-bg: #345e51;
  --footer-text: #ecf0f1;
  --footer-accent: #2ad3e9;
  --footer-hover: #2bfeb4;
  --border-color: #e9ecef;
  --card-hover-shadow: rgba(0, 0, 0, 10%);
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
}

* {
  font-family: "Poppins", sans-serif;
  font-weight: var(--font-weight-normal);
  font-style: normal;
  box-sizing: border-box; /* Recommended addition to prevent overflow */
}

html, body {
  overflow-x: hidden; /* Disable horizontal scrolling */
  width: 100%; /* Ensure full width */
  margin: 0; /* Remove default margin */
  padding: 0; /* Remove default padding */
}

.card-body {
  position: relative; 
  z-index: 1; 
}

.neu-button {
  background-color: var(--primary-light) !important;
  border-radius: 50px;
  box-shadow: inset 4px 4px 10px #5f9d88, inset -4px -4px 10px var(--primary-color);
  color: var(--text-dark);
  cursor: pointer;
  font-size: 12px;
  padding: 10px 40px;
  transition: all 0.2s ease-in-out;
  border: 2px solid var(--primary-color);
  z-index: 100;
}

.about .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: none;
  box-shadow: 0 0 29px 0 rgba(0, 0, 0, 8%);
  transition: all 0.3s ease-in-out;
  border-radius: 25px;
  z-index: 1;
  height: 100%;
  margin-bottom: 20px;
}

.about{
  margin-top: 500px !important;
}

.about .icon-box:hover {
  transform: translateY(-10px);
}

.about-icon-circle {
  width: 60px;
  height: 60px;
  background-color: var(--primary-transparent);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.about-icon-circle i {
  font-size: 24px;
  color: var(--text-dark);
}

.about .icon-box h3 {
  font-size: 20px;
  font-weight: var(--font-weight-semibold);
  margin: 15px 0;
  color: var(--text-heading);
}

.about .icon-box p {
  margin: 0;
  color: var(--text-body);
  line-height: 1.6;
  font-weight: var(--font-weight-normal);
}

.about-bg-style {
  background-color: var(--background-lighter);
  border-radius: 25px;
}

.features-container {
  padding: 20px;
}

.features-row {
  background-color: var(--background-light);
  padding: 20px;
  border-radius: 10px;
}

.section-title {
  color: var(--text-heading);
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--primary-color);
}

.feature-list {
  list-style: none;
  padding-left: 0;
}

.feature-list li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  color: var(--text-body);
}

.feature-list li::before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
}

.site-footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding: 40px 0;
}

.footer-column h4 {
  font-size: 18px;
  font-weight: var(--font-weight-medium);
  margin-bottom: 15px;
  color: var(--footer-accent);
}

.footer-column p {
  font-size: 14px;
  line-height: 1.6;
  font-weight: var(--font-weight-normal);
}

.footer-column ul li a {
  color: var(--footer-text);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: var(--font-weight-normal);
}

.footer-column ul li a:hover {
  color: var(--footer-hover);
}

.social-icons a {
  color: var(--footer-text);
  font-size: 18px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--footer-hover);
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
}

.contact-section {
  background-color: var(--background-lighter);
  padding: 2rem 0;
}

.contact-info-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: white;
  height: 100%;
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border-radius: 25px;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px var(--card-hover-shadow);
}

.card-icon {
  color: var(--primary-color);
  background-color: var(--primary-lighter);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: transform 0.3s ease;
  margin-bottom: 0.5rem;
}

.card-icon-two {
  color: var(--primary-color);
  background-color: var(--primary-lighter);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  margin-bottom: 0.5rem;
}

.contact-info-card:hover .card-icon {
  transform: scale(1.1);
}

.contact-title {
  color: var(--text-heading);
  font-weight: var(--font-weight-bold);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.contact-subtitle {
  color: var(--text-body);
  font-size: 1rem;
}

.card-body {
  padding: 1rem;
  text-align: center;
}

.card-title {
  color: var(--text-heading);
  font-weight: var(--font-weight-semibold);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.card-text {
  font-weight: var(--font-weight-normal);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.form-card {
  border: none;
  box-shadow: none;
  border-radius: 25px;
  background-color: transparent;
}

.form-card .card-body {
  padding: 1.5rem;
  text-align: left;
}

.form-control {
  font-size: 0.95rem;
  border-radius: 15px;
  border: none
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem var(--primary-light);
}

.form-floating label {
  font-size: 0.9rem;
}

.form-icon {
  color: var(--text-body);
  font-size: 0.9rem;
  margin-right: 0.5rem;
}

.message-area {
  height: 120px;
}

.card-icon i {
  font-size: 1.25rem;
}

.submit-btn {
  background-color: var(--primary-color);
  border: none;
  color: var(--text-dark);
  font-weight: var(--font-weight-medium);
  font-size: 0.95rem;
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease;
  border-radius: 15px;
}

.submit-btn:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  color: var(--text-dark);
  transform: translateY(-2px);
}

.submit-btn i {
  margin-left: 0.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

@media (max-width: 992px) {
  .feature-row {
    flex-direction: column;
  }

  .feature-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .feature-icon {
    margin-bottom: 1rem;
  }
}

.nav-link {
  font-size: 12px;
  font-weight: var(--font-weight-normal);
}

.nav-link.active {
  color: var(--primary-color); /* Change to your desired active color */
}

.site-footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding: 40px 0;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  margin-bottom: 20px;
}

.footer-column h4 {
  font-size: 18px;
  font-weight: var(--font-weight-medium);
  margin-bottom: 15px;
  color: var(--footer-accent);
}

.footer-column p {
  font-size: 14px;
  line-height: 1.6;
  font-weight: var(--font-weight-normal);
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: var(--footer-text);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: var(--font-weight-normal);
}

.footer-column ul li a:hover {
  color: var(--footer-hover);
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  color: var(--footer-text);
  font-size: 18px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--footer-hover);
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 5px;
}

.newsletter-form button {
  padding: 10px 20px;
  background-color: var(--primary-color);
  border: none;
  border-radius: 5px;
  color: #2c3e50;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-weight: var(--font-weight-medium);
}

.newsletter-form button:hover {
  background-color: var(--primary-hover);
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
}

.video-cta-section {
  background-color: var(--background-lighter);
  position: relative;
  overflow: hidden;
  padding: 3rem 4rem;
  border-radius: 20px;
}

.badge.text-bg-primary {
  background-color: var(--primary-light) !important;
  color: var(--text-dark) !important;
  font-weight: var(--font-weight-medium);
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

.cta-content {
  padding-right: 2rem;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--text-heading);
  line-height: 1.2;
}

.cta-text {
  color: var(--text-body);
  font-size: 1.1rem;
  line-height: 1.6;
}

.feature-highlights {
  list-style: none;
  padding: 0;
}

.feature-highlights li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  color: var(--text-body);
}

.feature-highlights li i {
  color: var(--primary-color);
  margin-right: 1rem;
}

.video-container {
  position: relative;
  background-color: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 10%);
  border: 2px solid var(--primary-hover);
}

.lead-two{
  color:#fff !important;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; 
  height: 0;
  overflow: hidden;
}

.platform-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.video-card-overlay {
  position: absolute;
  inset: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.video-metrics {
  display: flex;
  gap: 1.5rem;
}

.metric {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-size: 0.9rem;
}

.metric i {
  color: var(--primary-color);
}

@media (max-width: 991.98px) {
  .cta-content {
    padding-right: 0;
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .feature-highlights li {
    justify-content: center;
  }
  
  .video-container {
    margin: 0 auto;
    max-width: 100%;
  }
}


.comprehensive-solution {
  background-color: white;
  padding: 4rem 0;
}


.radial-features {
  position: relative;
  max-width: 900px;
  height: 600px;
  margin: 0 auto;
}

.center-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--primary-color);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-content i {
  font-size: 2.5rem;
  color: var(--primary-color);
}

.feature {
  position: absolute;
  width: 250px;
  text-align: center;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 2;
}

.feature-icon i {
  font-size: 2rem;
  color: var(--primary-color);
}

.feature-content h3 {
  color: var(--text-heading);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: var(--font-weight-semibold);
}

.feature-content p {
  color: var(--text-body);
  font-size: 0.9rem;
  margin: 0;
  font-weight: var(--font-weight-normal);
}

.connector {
  position: absolute;
  background-color: var(--primary-color);
  opacity: 0.3;
  z-index: 1;
}

.top-left {
  top: 15%;
  left: 5%;
}

.top-left .connector {
  width: 150px;
  height: 3px;
  top: 40px;
  left: 100%;
  transform: rotate(45deg);
  transform-origin: left;
}

.top-right {
  top: 15%;
  right: 5%;
}

.top-right .connector {
  width: 150px;
  height: 3px;
  top: 40px;
  right: 100%;
  transform: rotate(-45deg);
  transform-origin: right;
}

.bottom-left {
  bottom: 15%;
  left: 5%;
}

.bottom-left .connector {
  width: 150px;
  height: 3px;
  bottom: 40px;
  left: 100%;
  transform: rotate(-45deg);
  transform-origin: left;
}

.bottom-right {
  bottom: 15%;
  right: 5%;
}

.bottom-right .connector {
  width: 150px;
  height: 3px;
  bottom: 40px;
  right: 100%;
  transform: rotate(45deg);
  transform-origin: right;
}

@media (width<=991px) {
  .radial-features {
    height: auto;
    padding: 2rem 0;
  }

  .center-circle {
    position: static;
    transform: none;
    margin: 0 auto 2rem;
  }

  .feature {
    position: static;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 2rem;
    text-align: center;
  }

  .feature-icon {
    margin: 0 auto 1rem;
  }

  .connector {
    display: none;
  }
}

.sector-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.feature-item {
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  background-color: var(--background-light);
  color: var(--text-heading);
}

.feature-item:hover {
  transform: scale(1.02);
  z-index: 2;
  background-color: var(--primary-light);
}

.feature-item::after {
  content: "view more ↓";
  position: absolute;
  right: 1rem;
  color: var(--text-body);
  font-size: 0.8rem;
}

.feature-details {
  background: var(--background-lighter);
  border-radius: 0 0 0.5rem 0.5rem;
  display: none;
  padding: 1rem;
  margin-top: -3px;
  border-top: 2px dashed var(--border-color);
}

.feature-details.show {
  display: block;
}

/* Dark mode styles */
body.bg-dark .feature-details {
  background: #1e1e1e; /* Dark background for feature details in dark mode */
  color: #fff; /* Ensure text is readable */
}

body {
  background-color: var(--background-light);
}

.sector-circle.bg-primary {
  background-color: var(--primary-color) !important;
}

.sector-circle.bg-warning {
  background-color: var(--footer-hover) !important;
}

.sector-circle.bg-success {
  background-color: var(--footer-bg) !important;
}

.sector-circle.bg-info {
  background-color: var(--footer-accent) !important;
}

.sector-circle.bg-danger {
  background-color: var(--primary-hover) !important;
}

.text-primary {
  color: var(--footer-bg) !important;
}

.text-warning {
  color: var(--footer-hover) !important;
}

.text-success {
  color: var(--footer-bg) !important;
}

.text-info {
  color: var(--footer-accent) !important;
}

.text-danger {
  color: var(--primary-hover) !important;
}

.bg-white {
  background-color: var(--background-light) !important;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem var(--card-hover-shadow) !important;
}

.navbar {
  background-color: transparent !important;
  padding: 1rem 2rem;
  position: fixed;
  top: 1%;
  left: 50%;
  transform: translateX(-50%);
  width: 99%;
  z-index: 1000;
  transition: background-color 0.3s;
  border-radius: 10px;
}

.navbar.scrolled {
  backdrop-filter: blur(350px);
  box-shadow: rgba(0, 0, 0, 16.4%) 0 2px 10px;
  background-color: rgba(145, 145, 145, 92.6%);

}

.nav-link {
  color: #333;
  margin: 0 1rem;
  font-weight: 500;
}

.nav-link.active {
  font-weight: 800 !important; /* Makes it bolder when active */
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.hero-responsive {
  height: 100vh; /* Default for small devices */
}



.hero-content {
  text-align: center;
  z-index: 2;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.topic {
  font-size: 3.5rem;
  font-weight: bold;
  color: #0e0e0e;
  margin: 0;
  line-height: 1.2;
}

.lead {
  font-size: 1.25rem;
  color: #1d1d1dea;
  margin-top: -20px;
  margin-bottom: 40px;
}

.lead-new{
  color: #414141
}

.neu-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: #f5f5f5;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.neu-button:hover {
  box-shadow: inset 5px 5px 10px rgba(0,0,0,10%),
             inset -5px -5px 10px rgba(255,255,255,80%);
}

.tablet-container {
  position: absolute;
  width: 100%;
  top: 65vh;
  perspective: 1500px;
  z-index: 5;
  margin-top: -80px !important;
}

.tablet {
  width: 1200px;
  height: 693px;
  border-radius: 30px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%) rotateX(45deg);
  transform-origin: bottom;
  transition: transform 1.0s ease;
  border: 1px solid #000000ae;
  box-shadow: 
      0 20px 40px rgba(0, 0, 0, 10%),
      inset 0 -20px 40px rgba(0, 0, 0, 5%);
  background: linear-gradient(140deg, #dcdcdc, #1c1c1c);
}


.tablet.scrolled {
  transform: translateX(-50%) translateY(120px) rotateX(0deg) scale(0.9);
  transition: transform 1.0s ease-in-out;
}


.tablet-screen {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 15px;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 10%);
  overflow: hidden;
}

.tablet-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



.icons-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  font-size: 0.7rem;
  color: rgba(79, 196, 75, 42.9%);
  pointer-events: auto;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 4;
}

.floating-icon:hover {
  color: #333;
  transform: scale(1.5) !important;
  animation-play-state: paused !important;
}

.floating-icon.fa-twitter:hover { color: #1DA1F2; }
.floating-icon.fa-facebook:hover { color: #4267B2; }
.floating-icon.fa-instagram:hover { color: #E1306C; }
.floating-icon.fa-heart:hover { color: #f44; }
.floating-icon.fa-star:hover { color: #ffd700; }
.floating-icon.fa-comment:hover { color: #4CAF50; }

.floating {
  animation: float 20s linear infinite;
}

@keyframes float {
  0% {
      transform: translate(0, 0) rotate(0deg);
      opacity: 0;
  }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% {
      transform: translate(var(--moveX), var(--moveY)) rotate(360deg);
      opacity: 0;
  }
}

@media (max-width: 1400px) {
  .tablet {
      width: 1000px;
      height: 600px;
  }
  .topic {
      font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .tablet {
      width: 700px;
      height: 450px;
  }
  .topic {
      font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .tablet {
      margin-top: 160px;
      width: 350px;
      height: 200px;
  }

  .topic {
      font-size: 2rem;
  }

  .lead {
      font-size: 1rem;
  }
}

.lead {
  font-size: 14px;
  line-height: 2;;
  font-weight: var(--font-weight-normal);
  color: var(--text-body);
}

.topic {
  font-size: 35px;
  line-height: 1.0835;
  font-weight: var(--font-weight-semibold);
  color: var(--text-heading);
}

.last_mile_logo {
  width: 60px !important;
  height: auto;
}

.brand-container {
  display: flex;
  align-items: center;
  gap: 4px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.text-small {
  font-size: 8px;
  margin-bottom: 2px;
  white-space: nowrap; /* Prevent text wrapping */
  width: auto; /* Allow text to take its natural width */
  overflow: visible; /* Show all text */
  text-overflow: clip; /* Remove ellipsis */
}

.text-large {
  font-size: 25px; /* Increased from 14px */
  font-weight: 700;
  margin-bottom: 2px;
  width: auto;
  white-space: nowrap;
  letter-spacing: 1px; /* Added letter spacing */
}

@media (max-width: 768px) {
  .last_mile_logo {
    width: 25px !important;
  }
  
  .text-large {
    font-size: 14px; /* Reduced for mobile */
    letter-spacing: 0.5px; /* Reduced letter spacing for mobile */
  }
  
  .text-small {
    font-size: 7px;
  }
}

@media (max-width: 768px) {
  .last_mile_logo {
    width: 25px !important;
  }
  
  .text-large {
    font-size: 12px;
  }
  
  .text-small {
    font-size: 7px;
  }
}

.text-medium {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: normal;
  color: #6d6d6d;
}

.nav-link.active {
  color: var(--primary-color);
}

.text-custom-dark {
  color: rgb(62 79 61) !important; /* Your black hex color */
}

.text-custom-green {
  color: rgba(236, 236, 236, 100%) !important;/* Your green hex color */
}

.topic-two {
  font-size: 28px;
  line-height: 1.1905;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.011em;
  color: var(--text-heading);
}

.scroll-to-home {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.scroll-to-home.visible {
  opacity: 1;
  visibility: visible;
}

.home-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: var(--primary-color, rgb(119, 204, 150));
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.home-btn:hover {
  background: var(--primary-dark, rgb(155, 239, 117));
  transform: translate(-50%, -50%) scale(1.1);
}

.progress-ring {
  transform: rotate(-90deg);
  color: var(--primary-color, #007bff);
}

.progress-ring-circle {
  transition: stroke-dashoffset 0.1s;
  transform-origin: 50% 50%;
}

@keyframes pulse {
  0% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.1); }
  100% { transform: translate(-50%, -50%) scale(1); }
}

.home-btn:hover {
  background: var(--primary-dark, rgb(61, 230, 153));
  transform: translate(-50%, -50%) scale(1.1);
}

.scroll-to-home.pulse .home-btn {
  animation: pulse 1s infinite;
}

        .feature-card {
            display: flex;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(127, 255, 212, 20%);
            border: 1px solid var(--primary-light);
        }

        .feature-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .feature-content {
            padding: 2rem;
            background:rgb(137, 206, 181);
            border-radius: 15px;
        }

        .team-card {
            background:rgb(137, 206, 181);
            border-radius: 15px;
            overflow: hidden;
            height: 100%;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(127, 255, 212, 20%);
            border: 1px solid var(--primary-light);
        }

        .team-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-hover);
            box-shadow: 0 8px 20px rgba(127, 255, 212, 30%);
        }

        .card-img-container {
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .card-img-container::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            inset: 0;
            background: var(--primary-transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .team-card:hover .card-img-container::after {
            opacity: 0.2;
        }

        .card-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .team-card:hover .card-img-container img {
            transform: scale(1.05);
        }

        .card-content {
            padding: 1.5rem;
            background: linear-gradient(to bottom, white, var(--primary-lighter));
        }

        .member-name {
            color: #2d3748;
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .member-position {
            color: var(--primary-hover);
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .member-bio {
            color: #4a5568;
            font-size: 0.875rem;
            line-height: 1.6;
        }

        .stats-item {
            padding: 1rem;
            background: var(--primary-light);
            border-radius: 8px;
            margin-bottom: 0.5rem;
        }

        .stats-item h4 {
            color: var(--primary-hover);
            margin-bottom: 0.25rem;
        }

        .section-title {
            position: relative;
            display: inline-block;
            padding-bottom: 0.5rem;
        }

        .section-title::after {
            content: '';
            position: absolute;
            inset: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60%;
            height: 3px;
            background: var(--primary-hover);
            border-radius: 2px;
        }

        /* New Footer Styles */
        .team-footer {
            background: var(--footer-bg);
            padding: 3rem 0;
            margin-top: 4rem;
            color: white;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .footer-stats {
            display: flex;
            gap: 3rem;
        }

        .stat {
            text-align: center;
        }

        .stat-value {
            font-size: 2rem;
            font-weight: bold;
            color: var(--primary-hover);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.875rem;
            opacity: 0.9;
        }

        .footer-cta {
            padding: 0.75rem 2rem;
            background: var(--primary-hover);
            color: var(--footer-bg);
            border: none;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .footer-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(108, 233, 193, 30%);
        }

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

        .social-link {
            color: white;
            font-size: 1.25rem;
            transition: color 0.3s ease;
        }

        .social-link:hover {
            color: var(--primary-hover);
        }


        /* About section styles */
.about-bg-style {
  transition: background-color 0.3s ease;
}

.topic-two {
  color: rgb(57,57,57); /* Ensure it stays white */
}

/* Preserve card styles */
.icon-box {
  background-color: #fff; /* Or your default card background color */
  transition: none; /* Prevent unwanted transitions */
}

.card-topic,
.card-text {
  color: inherit !important; /* Keep default text colors */
}

/* Optional: Add some transparency to the about section in dark mode */
.bg-dark .about-bg-style {
  background-color: rgb(167, 183, 175 / 100) !important;
}

        @media (max-width: 768px) {

          .topic {
              font-size: 20px; /* Reduce size for tablets & smaller screens */
            }

            .topic-two{
              font-size: 18px;
              padding: 24px
            }

            .neu-button {
              width: 130px;
              height: 40px;
              display: flex;
              justify-content: center;
              align-items: center;
              text-align: center;
              font-size: 8px;
              margin: 0 auto;    /* Replace margin-left: 32% with margin: 0 auto */
          }

          .lead{
            font-size: 10px;
             margin-top: 30px;
             padding: 2px !important;
          }

          .lead-new{
            margin-top: -40px !important;
            width: 100% !important;
            text-align: center;
            padding: 5px !important;
            font-size: 12px !important;
          }

          .card-text{
            font-size: 14px;
          }

          .card-topic{
            font-size: 16px;
          }

          .icon-box{
            padding: 30px !important;
            width: 100%;
            height: 370px !important;
          }
          
          .tablet.scrolled {
            transform: translateX(-50%) translateY(20px) rotateX(0deg) scale(0.8);
            transition: transform 1.2s ease-in-out;
          }
          
          .tablet{
            margin-top: 140px;
          }

          .tablet-screen{
            top: 10px;
            bottom: 10px;
            left: 10px;
            inset: 10px 10px 10px 10px;
          }

          .hero-responsive{
            height: 80vh !important;
            margin-bottom: -370px
          }

          .hero-content{
            margin-top: 100px;
          }

          .video-cta-section{
            padding: 10px !important;
          }

          .feature-highlights{
            font-size: 12px;
          }

          .new-button{
            font-size: 9px;
            padding: 5px;
          }

          .about-topic{
            margin-top: 10px !important;
          }

          .last_mile_logo {
            width: 25px !important;
          }
          
          .text-large {
            font-size: 12px;
          }
          
          .text-small {
            display: none;
          }
      }

.feature-details h6,
.feature-details p,
.feature-item,
.sector-container h6 {
    transition: color 0.3s ease;
}


.image-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.image-container:hover img {
  transform: scale(1.04);
}

.modal-content {
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,10%);
}

.modal-header {
  background-color: transparent;
  padding: 1.5rem 1.5rem 0.5rem;
}

.modal-title {
  font-weight: 600;
  font-size: 1.25rem;
}

.modal-body {
  padding: 1.5rem;
}

.modal-footer {
  padding: 0.5rem 1.5rem 1.5rem;
}

/* Button styling */
.btn {
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0,0,0,10%);
}

/* Success modal specific styles */
#successModal .modal-content {
  border-top: 5px solid #198754;
}

.success-icon {
  color: #198754;
}

/* Error modal specific styles */
#errorModal .modal-content {
  border-top: 5px solid #dc3545;
}

.error-icon {
  color: #dc3545;
}

/* Animation */
.modal.fade .modal-dialog {
  transform: scale(0.8);
  transition: transform 0.3s ease-in-out;
}

.modal.show .modal-dialog {
  transform: scale(1);
}

.pricing-section {
  background-color: var(--background-lighter);
  padding: 80px 0;
}

.pricing-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px var(--card-hover-shadow);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px var(--card-hover-shadow);
}

.pricing-card.popular {
  border: 2px solid var(--primary-color);
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--primary-color);
  color: var(--text-dark);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: var(--font-weight-medium);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.card-icon i {
  font-size: 1.5rem;
  color: var(--footer-bg);
}

.pricing-card h3 {
  color: var(--text-heading);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: var(--font-weight-semibold);
}

.price {
  margin-bottom: 2rem;
  color: var(--text-heading);
}

.price .currency {
  font-size: 1.5rem;
  font-weight: var(--font-weight-medium);
  vertical-align: top;
  margin-right: 5px;
}

.price .amount {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
}

.price .period {
  color: var(--text-body);
  font-size: 1rem;
}

.price.enterprise {
  font-size: 1.8rem;
  font-weight: var(--font-weight-semibold);
  color: var(--primary-color);
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  color: var(--text-body);
}

.features-list i {
  color: var(--primary-color);
  margin-right: 10px;
  margin-top: 4px;
}

.btn-select {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--primary-color);
  border-radius: 10px;
  background: transparent;
  color: var(--footer-bg);
  font-weight: var(--font-weight-semibold);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-select:hover {
  background: var(--primary-color);
  color: var(--text-dark);
}

.btn-select.popular {
  background: var(--primary-color);
  color: var(--text-dark);
}

.btn-select.popular:hover {
  background: var(--primary-hover);
}

@media (width <= 991px) {
  .pricing-card {
      margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .pricing-section {
      padding: 40px 0;
  }
  
  .price .amount {
      font-size: 2rem;
  }
}

body::-webkit-scrollbar {
  width: 16px;
}

body::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

body::-webkit-scrollbar-thumb {
  background-color: #5b917d;
  border-radius: 20px;
  border: 4px solid #f1f1f1;
  background-clip: content-box;
}

body::-webkit-scrollbar-thumb:hover {
  background-color: #358d71;
  border: 4px solid #f1f1f1;
  background-clip: content-box;
}