:root {
  --default-font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

/* Global Colors */
:root {
  --background-color: #ffffff; 
  --tlpe-black: #272727; 
}

/* Nav Menu Colors */
:root {
  --nav-mobile-background-color: #272727; 
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--tlpe-black);
  background-color: var(--tlpe-black);
  font-family: var(--default-font);
  overflow-x: hidden;
}

a {
  color: var(--background-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--background-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--tlpe-black);
  font-family: var(--default-font);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 30px;
  margin-left: 10%;
}

.section-label h1 {
  color: var(--tlpe-black);
  font-weight: 700;
  font-size: 2.5rem;
  width: auto;
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-underline-offset: 10px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--tlpe-black);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--tlpe-black) transparent var(--tlpe-black) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--tlpe-black);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
  margin: 0 20px 20px;
}

.scroll-top i {
  font-size: 24px;
  color: var(--background-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--tlpe-black), transparent 20%);
  color: var(--background-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  background-color: var(--tlpe-black);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid
    color-mix(in srgb, var(--tlpe-black), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 25px;
  width: auto;
  margin-right: 38px;
}

.header .btn-contact-us,
.header .btn-contact-us:focus {
  color: var(--tlpe-black);
  background: var(--background-color);
  font-size: 16px;
  font-weight: 600;
  padding: 10px 20px;
  margin-left: 10px;
  border: 2px solid var(--background-color);
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.header .btn-contact-us:hover {
  background: var(--tlpe-black);
  color: var(--background-color);
  border-color: var(--background-color);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-contact-us {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }

  .btn-container {
    text-align: center;
  }

  .header .btn-contact-us,
  .header .btn-contact-us:focus {
    display: inline-block;
    color: var(--tlpe-black);
    background: var(--background-color);
    font-size: 18px;
    padding: 10px 20px;
    border: 2px solid var(--background-color);
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin: 20px auto;
  }
}

@media (min-width: 1200px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
  }
  .main {
    padding-top: 90px;
  }
  
  /* Desktop-only logo sizing */
  .header .logo img {
    max-height: 40px; 
    width: auto;
    margin-right: 38px;
  }

  .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--background-color);
    padding: 18px 15px;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover > a,
  .btn-contact-us {
    color: var(--tlpe-black);
  }
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--background-color);
  }
  .navmenu li:hover > a {
    color: var(--background-color);
  }

  .mobile-logo {
    display: none;
  }

  .logo-img {
    display: block;
  }

  .mobile-nav-active .navmenu {
    position: static;
  }

  .mobile-nav-active .navmenu ul {
    display: flex;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .container-fluid.container-xl {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 50%;
    transform: translateY(-50%);
  }

  .logo-img {
    display: block;
    margin: 0 auto;
  }

  /* Default state for the nav icons */
  .mobile-nav-toggle,
  .mobile-nav-close {
    line-height: 0;
    cursor: pointer;
    transition: color 0.3s;
    position: absolute;
    top: 25px; /* Adjust as needed */
    z-index: 9999;
  }
  .mobile-nav-toggle {
    left: 15px;
  }
  .mobile-nav-close {
    right: 15px;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 0;
    padding: 10px 0;
    margin: 0;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--background-color);
    padding: 20px;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transition: 0.3s;
  }

  /* When the mobile nav is active */
  .mobile-nav-active {
    overflow: hidden;
  }
  
  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: var(--nav-mobile-background-color); /* Updated to solid background */
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }
  
  /* Move the logo to the center when nav is active */
  .mobile-nav-active .logo {
    left: 50%;
    transform: translateX(-50%);
  }

  .mobile-logo {
    display: block;
    max-width: 60px;
    margin: 25px auto;
    padding-bottom: 50px;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Global Nav Link
--------------------------------------------------------------*/

.nav-link {
  text-decoration: none;
  color: var(--tlpe-black);
}

.nav-link:hover {
  text-decoration: none;
  color: var(--tlpe-black);
  font-weight: 800;
}

.nav-link.active {
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-underline-offset: 8px;
  
  font-weight: 800;
  justify-content: center;
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--tlpe-black);
  background-color: var(--background-color);
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 76px;
  }
}

/*--------------------------------------------------------------
# home Section
--------------------------------------------------------------*/
.home {
  background-color: var(--tlpe-black);
  width: 100%;
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  position: relative;
}

.home .content {
  z-index: 3;
}

.home img {
  width: auto;
  height: auto;
  max-width: 350px;
  margin-bottom: 20px;
}

.home h3 {
  color: var(--background-color);
  margin: 10px 0;
  font-size: 28px;
  font-weight: 700;
}

.home p {
  font-size: 16px;
  color: var(--background-color);
  margin: 0;
}

@media (max-width: 992px) {
  .home img {
    max-width: 250px;
  }

  .home h3 {
    font-size: 24px;
    text-align: center;
  }

  .home p {
    font-size: 14px;
    text-align: center;
  }
}

@media (min-width: 640px) {
  .home .icon-box:hover {
    transform: scale(1.08);
  }

  .home .icon-box:hover .title a {
    color: var(--tlpe-black);
  }
}

/*--------------------------------------------------------------
# Effortless Payment Section
--------------------------------------------------------------*/
.effortless {
  background-color: var(--tlpe-black);
  width: 100%;
  min-height: calc(100vh - 100px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 60px 0;
  overflow: hidden;
}

.effortless:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 100%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.effortless img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.effortless .container {
  position: relative;
  z-index: 3;
}

.effortless h1 {
  color: var(--background-color);
  margin: 10px 0;
  font-size: 64px;
  font-weight: 700;
}

.effortless p {
  margin: 20px 0 0 0;
  font-size: 18px;
  line-height: 30px;
  color: var(--background-color);
}

.btn-schedule-demo {
  color: var(--tlpe-black);
  background: var(--background-color);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 14px 50px;
  border-radius: 50px;
  transition: 0.5s;
  margin-top: 60px;
}

.btn-schedule-demo:hover {
  background: color-mix(in srgb, var(--background-color), transparent 70%);
}

@media (max-width: 992px) {
  .effortless h1 {
    font-size: 42px;
    line-height: 48px;
    margin: 10px 20px 20px 20px;
    text-align: left;
  }

  .effortless p {
    font-size: 14px;
    line-height: 24px;
    margin: 10px 20px 0 20px;
    text-align: left;
  }

  .effortless .btn-schedule-demo {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Feature Section
--------------------------------------------------------------*/
.joint {
  background: url("https://d38kut7afapgmn.cloudfront.net/tlpe/assets/img/tlpe-bg.png") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  display: block;
  min-height: 100vh;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

#features {
  padding-top: 200px;
  padding: 100px 0;
  background: none;
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: calc(100vh - 100px);
}

.features-desc {
  text-align: left;
  margin-left: 10%;
}

.features-desc p {
  color: var(--tlpe-black);
  font-size: 18px;
  font-weight: 500;
}


.feature-viewport {
  width: 1100px;
  overflow: visible; 
  position: relative;
  margin: 100px auto 0;
  transition: width 0.4s ease-in-out;
}

.feature-timeline {
  position: relative;
  width: 1100px;
  height: 260px;
  transition: transform 0.5s ease-in-out;
  padding-top: 40px; /* Added to move contents down */
  /* Prevent layout shifts during animations */
  overflow: visible;
  transform-style: preserve-3d;
}

/* Desktop-specific positioning to move feature elements down */
@media (min-width: 769px) {
  .feature-viewport {
    margin: 200px auto 0; 
  }
  
  .feature-timeline {
    padding-top: 80px; 
  }
}

svg.feature-connector {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* --- The Feature Steps (Circles) --- */
.feature-step-wrapper {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.feature-step {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: var(--tlpe-black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}




/* --- Description Box and Controls (Shared) --- */
.feature-description {
  background-color: var(--tlpe-black);
  width: 60%;
  padding: 20px 30px;
  margin: 40px auto 0;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
}

.feature-prev, .feature-next {
  background: transparent;
  border: none;
  color: var(--background-color);
  font-size: 2.5rem;
  cursor: pointer;
  padding: 0 15px;
}

.description-content {
  color: var(--background-color);
  text-align: center;
  flex: 1;
}

.feature-title {
  color: var(--background-color);
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 10px 0;
}

.feature-text {
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
}

.feature-indicator {
  text-align: center;
}

.indicator-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #C4C4C4;
  
  transition: background-color 0.3s ease;
}
.indicator-dot.active {
  background-color: #333;
}

.feature-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  gap: 60px;
}

.feature-controls .feature-prev,
.feature-controls .feature-next {
  background: transparent;
  border: none;
  color: #232323;
  font-size: 3.0rem;
  cursor: pointer;
  padding: 0 10px;
  transition: color 0.2s;
}

.feature-controls .feature-prev:hover,
.feature-controls .feature-next:hover {
  color: #000;
}

.feature-controls .feature-indicator {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Desktop-specific feature controls layout */
@media (min-width: 769px) {
  .feature-description {
    position: relative;
  }
  
  .feature-description .feature-prev {
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--tlpe-black);
    font-size: 4.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0 10px;
    transition: color 0.2s;
    z-index: 10;
  }
  
  .feature-description .feature-next {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--tlpe-black);
    font-size: 4.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0 10px;
    transition: color 0.2s;
    z-index: 10;
  }
  
  .feature-description .feature-prev:hover,
  .feature-description .feature-next:hover {
    color: color-mix(in srgb, var(--tlpe-black), transparent 25%);
  }
  
  .feature-controls .feature-prev,
  .feature-controls .feature-next {
    display: none;
  }
  
  .feature-controls {
    justify-content: center;
    gap: 0;
  }
}

@media (min-width: 769px) {
  .feature-description {
    margin-top: 180px; 
  }
  .feature-description .feature-prev {
    top: 65%; 
  }
  .feature-description .feature-next {
    top: 65%; 
  }
  .feature-controls {
    margin-top: 20px; 
  }
}

@media (max-width: 768px) {
 
  .feature-description { 
    width: 90%; 
    display: block;
    text-align: center;
  }
  
  .feature-description .feature-prev,
  .feature-description .feature-next {
    display: none; 
  }
  
  .feature-title { font-size: 20px; text-align: left; }
  .feature-text { font-size: 14px; text-align: left; }
  
  
  .feature-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
    gap: 60px;
  }
  
  .feature-controls .feature-prev,
  .feature-controls .feature-next {
    display: block;
    background: transparent;
    border: none;
    color: #232323;
    font-size: 3.0rem;
    cursor: pointer;
    padding: 0 10px;
    transition: color 0.2s;
  }
  
  .feature-controls .feature-prev:hover,
  .feature-controls .feature-next:hover {
    color: #000;
  }
  
  .feature-controls .feature-indicator {
    display: flex;
    align-items: center;
    gap: 5px;
  }
}




/*--------------------------------------------------------------
# Global Connectors Section
--------------------------------------------------------------*/
#connectors {
  padding: 200px 0;
  background: none;
  position: relative;
  z-index: 1;
}

.connectors h1 {
  font-size: 64px;
  font-weight: 700;
}

.connectors p {
  font-size: 16px;
  font-weight: 400;
}

.search-connectors {
  position: relative;
  z-index: 10;
  text-align: center;
}

.search-connectors .btn-search-connectors {
  cursor: pointer !important;
  pointer-events: auto;
  color: var(--background-color);
  background: var(--tlpe-black);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 14px 60px;
  border-radius: 50px;
  transition: background-color 0.5s ease, color 0.5s ease;
  margin: 60px 0 10%;
  text-align: center;
}

.search-connectors .btn-search-connectors a {
  text-align: center;
}

.search-connectors .btn-search-connectors:hover {
  background: color-mix(in srgb, var(--tlpe-black), transparent 15%);
}

.connectors,
.search-connectors {
  overflow: visible;
}

.search-connectors .btn-search-connectors i {
  margin-left: 10px;
}

@media (max-width: 1200px) {
  #connectors {
    padding: 0;
    margin-top: 100px;
  }

  .connectors h1 {
    font-size: 26px;
    margin-left: 12px;
    font-weight: 700;
    text-align: left;
  }

  .connectors p {
    text-align: left;
    margin-left: 12px;
  }

  .search-connectors {
    text-align: left;
    padding-left: 12px;
  }

  .search-connectors .btn-search-connectors {
    margin: 14px 0 30%;
    padding: 16px 40px;
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Infinite Autoplay Carousel
--------------------------------------------------------------*/
.container-content {
  width: 100vw;
  height: auto;
}

.slide-option {
  margin: 0 0 50px 0;
  .no-marg {
    margin: 0 0 0 0;
  }
}

div.connector-slider {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 150px;
}

div.connector-barrier {
  overflow: hidden;
  position: relative;
  width: 100%;
}

ul.connector-lane {
  display: flex;
  height: 100%;
}

li.brand-logo {
  width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 40px;
}
 /* ul.connector-lane {
  display: flex;
  height: 100%;
  width: calc((180px + 40px) * 56); 
  animation: translateinfinite 45s linear infinite;
} */

li.brand-logo img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

@keyframes translatestf {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-500%);
  }
}

#stffull div.connector-barrier {
  ul.connector-lane {
    width: 500%;
  }
}

@keyframes translateinfinite {
  100% {
    transform: translateX(calc(-180px * 28));
  }
}

#infinite div.connector-barrier {
  background: #fff;
  box-shadow: 0 3px 10px -3px rgba(0, 0, 0, 0.3);
}

#infinite div.connector-barrier::before,
#infinite div.connector-barrier::after {
  content: " ";
  position: absolute;
  z-index: 9;
  width: 180px;
  height: 100%;
}

#infinite div.connector-barrier::before {
  top: 0;
  left: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

#infinite div.connector-barrier::after {
  top: 0;
  right: 0;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

ul.connector-lane {
  width: calc(180px * 56);
}

li.brand-logo {
  width: 180px;
  animation: translateinfinite 45s linear infinite;
}

span.fab {
  font-size: 65px;
}

@media (max-width: 1199px) {
  #infinite div.connector-barrier::before,
#infinite div.connector-barrier::after {
  content: " ";
  position: static;
  width: 180px;
  height: 100%;
}
}

/*--------------------------------------------------------------
# Why TLPE Section
--------------------------------------------------------------*/
@media (min-width: 1199px) {
  .content-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: calc(100vh - 100px);
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
  }

  .left-column {
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    padding: 0 20px;
    margin-left: 150px;
  }

  .left-column h1,
  .left-column p {
    width: 100%;
  }

  .left-column h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-decoration: underline;
    text-decoration-thickness: 4px;
    text-underline-offset: 10px;
  }

  .left-column p {
    font-size: 1rem;
    line-height: 2;
    color: #333;
  }

  .right-column {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px 160px 20px 40px;
  }

  .right-column .image-row {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid var(--tlpe-black);
    border-radius: 12px;
    gap: 20px;
  }

  .right-column .image-row img {
    width: 80px;
    height: auto;
    object-fit: contain;
  }

  .right-column .image-row .text-container {
    flex: 1;
  }

  .right-column .image-row h3 {
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 10px;
  }

  .right-column .image-row p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
  }
}

/*Mobile View*/
@media (max-width: 1200px) {
  .content-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .left-column {
    width: 100%;
    padding: 20px 0;
  }

  .left-column h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: left;
    text-decoration: underline;
    text-decoration-thickness: 4px;
    text-underline-offset: 10px;
  }

  .left-column p {
    display: none;
  }

  .right-column {
    width: 100%;
    padding: 20px 0;
  }

  .right-column .image-row {
    flex-direction: column;
    align-items: center;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
    background: #f9f9f9;
    border: 1px solid var(--tlpe-black);
    border-radius: 12px;
    gap: 20px;
  }

  .right-column .image-row img {
    width: 120px;
    margin-bottom: 15px;
  }

  .right-column .image-row h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 10px;
  }

  .right-column .image-row p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

/*--------------------------------------------------------------
# Contact Us Section
--------------------------------------------------------------*/
.contactUs {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
  background-color: var(--background-color);
}

.container-custom {
  background-color: var(--tlpe-black);
  border-radius: 32px;
  padding: 40px;
  margin: 0 30px;
 

  @media (max-width: 1200px) {
    padding: 30px;
    margin: 0 30px;
  }
}

.contactUs h3 {
  font-size: 44px;
  font-weight: 800;
  padding: 20px 20px;
  color: var(--background-color);
  @media (max-width: 1200px) {
    font-size: 28px;
    padding: 0;
  }
}

.contactUs p {
  line-height: 25px;
  color: var(--background-color);
  margin: 20px 320px;
  @media (max-width: 1200px) {
    margin: 20px 0;
    line-height: 25px;
  }
}

@media (max-width: 1200px) {
  .btn-schedule-demo {
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--tlpe-black);
  background-color: var(--tlpe-black);
  border-top: 1px solid color-mix(in srgb, var(--tlpe-black), transparent 80%);
  font-size: 14px;
  padding: 40px 20px;
  position: relative;
  height: 430px; 
}

.footer .footer-top {
  padding: 20px 0;
}

.footer .footer-about {
  text-align: center;
}

.footer .footer-about img {
  max-height: 40px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-top: 70px;
}

.footer .footer-links,
.footer .footer-contact {
  padding-left: 20px;
  padding-right: 20px;
}

.footer .footer-links {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
}

.footer h4 {
  padding-top: -30px;
  text-align: left;
  margin-left: 0;
  padding-bottom: 5px;
  font-size: 18px;
  font-weight: bold;
  color: var(--background-color);
}

.footer .footer-links ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  text-align: left;
}

.footer .footer-links ul li {
  padding: 5px 0;
}

.footer .footer-links ul a {
  color: var(--background-color);
  text-decoration: none;
}

.footer .footer-links ul a:hover {
  color: var(--background-color);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 60px;
  border-radius: 4px;
  font-size: 25px;
  color: var(--background-color);
  margin-right: 10px;
  transition: 0.3s;
  margin-top: 0;
}

.footer .social-media {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
}

.footer .facebook-icon {
  width: 30px;
  height: 30px;
}

.footer .copyright {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: var(--tlpe-black);
  color: var(--background-color);
}

.footer .copyright p {
  margin-bottom: 0;
  margin-left: 0 !important;
  text-align: center !important;
}

@media (max-width: 768px) {
  .footer {
    height: 550px; 
    min-height: 0; 
    max-height: none; 
  }
  .footer .footer-about,
  .footer .footer-links,
  .footer .footer-contact,
  .footer .footer-links h4,
  .footer .footer-contact h4,
  .footer .footer-links ul,
  .footer .footer-contact ul,
  .footer .copyright {
    text-align: center !important;
  }
  .footer .social-links {
    justify-content: center !important;
  }
  .footer .copyright p {
    margin-left: 0 !important;
    text-align: center !important;
  }

  .footer .social-links {
    margin-left: 13px;
  }
}

.footer .footer-contact {
  margin-top: 55px; 
}

.footer .social-links {
  margin-top: -20px; 
}


.footer .footer-links h4::before {
  content: "";
  display: block;
  height: 50px; 
}

.footer-follow-desktop {
  display: inline;
}
.footer-follow-mobile {
  display: none;
}

@media (max-width: 768px) {
  .footer-follow-desktop {
    display: none;
  }
  .footer-follow-mobile {
    display: inline;
  }
}

@media (max-width: 768px) {
  .footer .footer-top {
    padding-top: 0 !important;      
    margin-top: -100px !important;   
  }
}

html, body {
  max-width: 100vw;
  overflow-x: hidden !important;
}

body.mobile-nav-active {
  overflow: hidden !important;
  height: 100vh !important;
  position: relative;
}

@media (max-width: 768px) {
  .feature-step-wrapper {
    position: relative !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: auto;
    margin: 0 !important;
    left: unset !important;
    top: unset !important;
    transform: none !important;
  }
}
/*for mobile feature sec*/
@media (max-width: 768px) {
  
  .feature-viewport {
    margin-left: -360px !important;
  }
  
  .feature-timeline {
    height: 350px !important;
    
  }
  .feature-connector {
    width: 1100px !important;
    height: 120px !important;
  }
  .feature-step-wrapper {
    position: absolute !important;
  }

  .feature-step-wrapper:nth-of-type(1) { left: -45px !important; top: 80px !important; }
  .feature-step-wrapper:nth-of-type(2) { left: 160px !important; top: -40px !important; }
  .feature-step-wrapper:nth-of-type(3) { left: 380px !important; top: 80px !important; }
  .feature-step-wrapper:nth-of-type(4) { left: 600px !important; top: -40px !important; }
  .feature-step-wrapper:nth-of-type(5) { left: 820px !important; top: 80px !important; }
  .feature-step-wrapper:nth-of-type(6) { left: 1050px !important; top: -40px !important; }
}

.header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 3000 !important;
  background: #272727 !important;
}
.main {
  padding-top: 70px !important;
}