/* General Styles - Applies to the entire website */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Ebrima", sans-serif;
  background-color: #f8f9fa;
  line-height: 1.6;
}

/* Hero Section */
/* Add these keyframes */
@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Ensure the sections are initially hidden */
/* Add these to your CSS */
.templates-section-unique,
.vcard-section-unique,
.dashboard-section-unique {
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

.templates-section-unique.active,
.vcard-section-unique.active,
.dashboard-section-unique.active {
  opacity: 1;
  transform: translateY(0);
}

.hero-section-unique {
  /*background-image: url("/images/backgrounds/linxhub-image-background.svg");*/
  background-color: #a89ed4;
  background-size: cover;
  background-position: right center;
  padding-top: 22.08vh; /* 40px */
  margin-top: -18vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  height: 160%;
}

.container-hero {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding-left: 10vw;
  padding-right: 10vw;
}

.row-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.text-content-hero {
  width: 60%;
  margin-top: -7.5%;
  animation: slideInFromRight 1s ease-out forwards;
}

.hero-heading {
  font-size: 5.5vw;
  /* 92px */
  font-weight: bold;
  color: #1b2329;
  line-height: 1.2;
  margin-bottom: 1.04vh;
  /* 20px */
  display: inline-block;
}
.sub-hero-heading {
  font-size: 3.8vw;
  /* 92px */
  font-weight: bold;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.04vh;
  /* 20px */
  display: inline-block;
}

/* Add animation for the sliding gradient */
.sliding-gradient {
  background: linear-gradient(120deg, #fff, #fff, #fff, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: slideColor 3s infinite linear;
  background-size: 200% 200%;
}

/* Keyframes for the sliding effect 
@keyframes slideColor {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}*/

.hero-heading .highlight-text {
  color: #fff;
}

.hero-links-text {
  font-size: 3vw; /* 30px */
  color: #fff;
  margin-top: 0.52vh; /* 10px */
  margin-bottom: -1.5vh;
}

.domain-box-hero {
  display: flex;
  align-items: center;
  font-size: 3vw; /* 30px */
  margin-bottom: 1.04vh; /* 20px */
}

.domain-prefix {
  color: #fff;
}

.domain-username {
  color: #fff;
}

.input-group-hero {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 0.78vh; /* 15px */
}

.input-group-text-hero {
  background-color: #fff;
  border: 0.05vw solid #cccccc;
  border-radius: 5px 0 0 5px;
  padding: 0.73vh;
  font-size: 1.7vw;
  color: #000;
}

.username-input-field {
  flex: 1;
  padding: 0.73vh; /* 14px */
  font-size: 1.7vw; /* 25px */
  border: 0.05vw solid #ccc; /* 1px */
  width: 17vw;
}

.create-link-btn-hero {
  background-color: #0b2a44;
  color: white;
  padding: 1.1vh 0.04vw;
  border-radius: 0 0.26vw 0.26vw 0;
  font-size: 1.45vw;
  cursor: pointer;
  border: none;
  width: 15vw;
  border-radius: 0 5px 5px 0px;
}

.create-link-btn-hero:hover {
  background-color: #75eeec;
}

.image-content-hero {
  width: 50%;
  display: flex;
  padding-top: 0.5vh;
  justify-content: right;
  align-items: center;
  margin-bottom: 0.1vh;
  overflow: hidden;
  position: relative;
  animation: slideInFromLeft 1s ease-out forwards;
}

.img-fluid-hero {
  transition: transform 0.3s ease-out;
  transform-style: preserve-3d;
  will-change: transform;
}

.image-content-hero img.img-fluid-hero {
  max-width: 550px;
  height: 675px;
  object-fit: contain;
  margin-right: -2.5vw;
}

/* Add initial hidden state */
.text-content-hero,
.image-content-hero {
  opacity: 0;
}

/* Templates Section */
/* Templates Section */
.templates-section-unique {
  width: 100%;
  background-color: #ffffff;
  padding: 5.17vh 0; /* 80px */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  overflow: hidden; /* Ensure no overflow during animation */
}

.container-templates {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding-left: 10vw;
  padding-right: 10vw;
}

.row-templates {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* Image Container */
.image-content-templates {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0; /* Initially hidden */
  transform: translateY(50px); /* Start 50px below */
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

.image-content-templates img.img-fluid-templates {
  max-width: 551px;
  height: 507px;
  object-fit: contain;
  transition: transform 0.3s ease-out; /* For mouse tracking */
  transform-style: preserve-3d;
  will-change: transform;
}

/* Text Container */
.text-content-templates {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: left;
  opacity: 0; /* Initially hidden */
  transform: translateY(50px); /* Start 50px below */
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

.text-content-templates h2.template-heading {
  font-size: 2.8vw; /* 36px */
  font-weight: bold;
  color: #333;
  margin-bottom: 1.04vh; /* 20px */
}

.text-content-templates p.template-description {
  font-size: 1.4vw; /* 21px */
  line-height: 1.6;
  margin-bottom: 1.56vh; /* 30px */
  color: #555;
}

.create-link-btn-templates {
  background-color: #0b2a44;
  width: 50%;
  color: white;
  padding: 1.4vh 2.6vw; /* 12px 25px */
  font-size: 1.2vw; /* 18px */
  border-radius: 0.36vw; /* 5px */
  cursor: pointer;
  border: none;
}

.create-link-btn-templates:hover {
  background-color: #75eeec;
}

/* Active State for Animation */
.templates-section-unique.active .image-content-templates,
.templates-section-unique.active .text-content-templates {
  opacity: 1; /* Fully visible */
  transform: translateY(0); /* Move to final position */
}

/* vCard Section */
.vcard-section-unique {
  width: 100%;
  background-color: #4f2996; /* Light gray background */
  padding: 5.17vh 0; /* 80px */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  overflow: hidden; /* Ensure no overflow during animation */
}

.container-vcard {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px; /* Adjust as needed */
  margin: 0 auto;
  padding-left: 10vw;
  padding-right: 10vw;
}

.row-vcard {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* Text Content */
.text-content-vcard {
  width: 50%;
  opacity: 0; /* Initially hidden */
  transform: translateY(50px); /* Start 50px below */
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

.vcard-heading {
  font-size: 2.8vw;
  font-weight: bold;
  color: #7ad5c4;
  margin-bottom: 1.04vh;
  width: 42vw;
  margin-left: -10vw;
}

.vcard-heading .highlight-text {
  color: #7ad5c4; /* Purple color for highlight */
}

.vcard-description {
  font-size: 1.8vw;
  font-weight: 500;
  color: #fff;
  margin-bottom: 1.04vh;
  width: 38vw;
  margin-left: -10vw;
}

.vcard-subtext {
  font-size: 1.4vw;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 2.08vh;
  width: 36vw;
  margin-left: -10vw;
}

.create-link-btn-vcard {
  background-color: #0b2a44;
  color: white;
  padding: 1.4vh 4.6vw;
  font-size: 1.2vw;
  border-radius: 0.36vw;
  cursor: pointer;
  border: 0.05vw solid #ccc;
  transition: background-color 0.3s ease;
  margin-left: -10vw;
}

.create-link-btn-vcard:hover {
  background-color: #75eeec; /* Darker purple on hover */
}

/* Image Content */
.image-content-vcard {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0; /* Initially hidden */
  transform: translateY(50px); /* Start 50px below */
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

.img-fluid-vcard {
  max-width: 551px;
  height: 507px;
  object-fit: contain;
  transition: transform 0.5s ease-in-out;
  margin-left: 10vw;
}

/* Active State for Animation */
.vcard-section-unique.active .text-content-vcard,
.vcard-section-unique.active .image-content-vcard {
  opacity: 1; /* Fully visible */
  transform: translateY(0); /* Move to final position */
}

/* Image Zoom Effect on Hover */
.image-content-vcard:hover .img-fluid-vcard {
  animation: zoomInOut 2s infinite ease-in-out;
}

@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Dashboard Section */
.dashboard-section-unique {
  width: 100%;
  background-color: #ffffff; /* White background */
  padding: 5.17vh 0; /* 80px */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  overflow: hidden; /* Ensure no overflow during animation */
}

.container-dashboard {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px; /* Adjust as needed */
  margin: 0 auto;
  padding-left: 10vw;
  padding-right: 10vw;
}

.row-dashboard {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* Text Content */
.text-content-dashboard {
  width: 50%;
  opacity: 0; /* Initially hidden */
  transform: translateX(-100%); /* Start off-screen to the left */
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

.dashboard-heading {
  font-size: 2.8vw;
  font-weight: bold;
  color: #333;
  margin-bottom: 1.04vh;
  width: 36vw;
}

.dashboard-subheading {
  font-size: 2.1vw;
  font-weight: bold;
  color: #333;
  margin-bottom: 1.04vh;
  width: 36vw;
}

.dashboard-description {
  font-size: 1.4vw;
  line-height: 1.6;
  color: #555;
  margin-bottom: 2.08vh;
  width: 35vw;
}

.create-link-btn-dashboard {
  background-color: #0b2a44;
  width: 74%;
  color: white;
  padding: 1.4vh 2.6vw;
  font-size: 1.2vw;
  border-radius: 0.36vw;
  cursor: pointer;
  border: none;
}

.create-link-btn-dashboard:hover {
  background-color: #75eeec; /* Darker purple on hover */
}

/* Image Content */
.image-content-dashboard {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0; /* Initially hidden */
  transform: translateX(100%); /* Start off-screen to the right */
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

.img-fluid-dashboard {
  max-width: 551px;
  height: 507px;
  object-fit: contain;
  margin-left: -20vw;
}

/* Active State for Animation */
.dashboard-section-unique.active .text-content-dashboard {
  opacity: 1; /* Fully visible */
  transform: translateX(0); /* Move to final position */
}

.dashboard-section-unique.active .image-content-dashboard {
  opacity: 1; /* Fully visible */
  transform: translateX(0); /* Move to final position */
}

/* Features Section */
.features-section-unique {
  background-color: #4f2996;
  padding: 4.17vh 0; /* 80px */
}

.section-title-features {
  font-size: 2.86vw; /* 55px */
  color: #fff;
  text-align: center;
  margin-bottom: 2.08vh; /* 40px */
}

.feature-boxes-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.04vw; /* 20px */
  max-width: 62.5vw; /* 1200px */
  margin: 0 auto;
}

.feature-box-item {
  background-color: white;
  padding: 1.04vw 1vw;
  border-radius: 0.52vw;
  text-align: center;
  box-shadow: 0 0.21vw 0.42vw rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
  align-items: center;
}

.feature-box-item:hover {
  transform: translateY(-0.26vw); /* 5px */
  background-color: #c0ade1;
}

.feature-box-item p {
  font-size: 1.4vw; /* 18px */
  color: #333;
  margin-top: 0.52vh; /* 10px */
}

.heart-icon {
  width: 2.4vw; /* 40px */
  height: 2.4vw; /* 40px */
  margin-bottom: 0.5vh; /* 10px */
}

/* How it Works Section */
.how-it-works-section-unique {
  background-color: #fff;
  padding: 4.17vh 0; /* 80px */
}

.container-how-it-works {
  max-width: 62.5vw; /* 1200px */
  margin: 0 auto;
}

.how-it-works-heading {
  font-size: 2.86vw; /* 55px */
  text-align: center;
  margin-bottom: 2.08vh; /* 40px */
}

.row-how-it-works {
  display: flex;
  justify-content: space-between;
}

.step-box {
  position: relative;
  overflow: hidden; /* Ensure the border animation stays within the box */
  background-color: #fff;
  border: 0.1vw solid transparent; /* Transparent border initially */
  padding: 1.08vw; /* 20px */
  border-radius: 0.52vw; /* 10px */
  text-align: center;
  box-shadow: 0 0.21vw 0.42vw rgba(0, 0, 0, 0.1); /* 4px 8px */
  width: 40%;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.step-box:hover {
  transform: scale(1.05); /* Zoom effect */
  box-shadow: 0 0.42vw 0.83vw rgba(0, 0, 0, 0.2); /* Larger shadow on hover */
}
/* Animated Border */
.step-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 0.1vw solid transparent;
  border-radius: 0.52vw; /* Match the box's border radius */
  z-index: -1;
  animation: borderAnimation 2s infinite linear;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step-box:hover::before {
  opacity: 1; /* Show the animated border on hover */
}

.step-number-circle {
  background-color: #0b2a44;
  color: #fff;
  width: 2.8vw; /* 50px */
  height: 2.8vw; /* 50px */
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 1.35vw; /* 24px */
  margin: 0 auto 1.04vh; /* 20px */
}

.step-title {
  font-size: 1.7vw; /* 25px */
  font-weight: bold;
  text-align: left;
  color: #333;
  margin-bottom: 0.78vh; /* 15px */
}

.step-description {
  font-size: 1.18vw; /* 20px */
  text-align: left;
  color: #666;
  line-height: 1.6;
}

@keyframes borderAnimation {
  0% {
    border-color: #772bb3;
    transform: scale(1);
  }
  25% {
    border-color: #0b2a44;
  }
  50% {
    border-color: #75eeec;
    transform: scale(1.02);
  }
  75% {
    border-color: #0b2a44;
  }
  100% {
    border-color: #772bb3;
    transform: scale(1);
  }
}

/* Trusted Section */
.trusted-section-unique {
  background-color: #fff;
  padding: 4.17vh 0;
  overflow: hidden;
}

.container-trusted {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.star-rating {
  margin-bottom: 1.04vh;
}

.star-icon {
  width: 1.5vw;
  height: 1.5vw;
  margin: 0 0.1vw;
}

.trusted-title {
  font-size: 2.86vw;
  margin-bottom: 2.08vh;
}

/* Slider Wrapper */
.slider-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin: 40px 0;
  perspective: 1000px;
}

.slider-container {
  display: flex;
  gap: 2vw;
  animation: scroll-left 20s linear infinite; /* Smooth infinite scroll */
  padding: 20px 0;
  transform-style: preserve-3d;
  width: max-content; /* Ensure the container expands to fit all items */
}

/* Scroll Animation */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* Move by half the container width */
  }
}

/* Base Slider Item Styles */
.slider-item {
  flex: 0 0 auto;
  height: 150px;
  width: 150px;
  position: relative;
  perspective: 1000px;
  cursor: pointer;
  overflow: hidden;
  border-radius: 23px;
}

/* Hover Effects */
.slider-item:hover {
  transform: scale(1.1);
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.3),
    0 6px 12px rgba(0, 0, 0, 0.2);
}

.slider-item-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease;
  transform-style: preserve-3d;
}

.slider-item:hover .slider-item-inner {
  transform: rotateY(180deg);
}

/* Front and Back Faces */
.slider-item-front,
.slider-item-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.slider-item-front {
  background: linear-gradient(135deg, #2a2a40, #1e1e2f);
}

.slider-item-back {
  transform: rotateY(180deg);
  background: linear-gradient(
    135deg,
    var(--random-color-1),
    var(--random-color-2)
  );
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  padding: 10px;
}

/* Image Styling */
.img-fluid-trusted {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Title Styling */
.trusted-username {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  line-height: 1.4;
}

/* Mobile Styles */
@media (max-width: 360px) {
  /* General Adjustments */
  body {
    text-align: left;
    width: 100%;
  }

  .hero-section-unique {
    background-color: #a89ed4;
    background-size: cover;
    background-position: right center;
    padding-top: 22.08vh; /* 40px */
    margin-top: -20vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    height: 160%;
  }

  .container-hero,
  .row-hero {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding-top: 4vh;
  }

  .text-content-hero {
    width: 100%;
    text-align: left;
    margin-top: -2.5%;
    margin-left: -4vw;
  }

  .hero-heading {
    font-size: 10.5vw;
    padding-top: 0vh;
    width: 110%;
    text-align: left;
  }

  .hero-links-text,
  .domain-box-hero {
    font-size: 7.7vw;
    text-align: left;
    width: 100%;
    margin-top: -1.5vh;
  }

  /* Parent container for prefix, input, and button */
  /* Parent container for the input group */
  .input-group-hero {
    display: flex;
    flex-direction: column; /* Stack the input row and button vertically */
    align-items: center;
    width: 100%;
    margin-bottom: 2vh;
  }

  /* Container for prefix and input field */
  .input-group-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%; /* Adjust the width as needed */
    margin-bottom: 2vh;
    gap: 0;
  }

  /* Prefix text styling */
  .input-group-text-hero {
    font-size: 5.5vw;
    padding: 2.5vh;
    border-radius: 2vw 0 0 2vw;
    text-align: center;
    flex-shrink: 0; /* Prevent shrinking */
  }

  /* Input field styling */
  .username-input-field {
    font-size: 5.5vw;
    padding: 2.5vh;
    border-radius: 0 2vw 2vw 0;
    padding-left: 1.5vw;
    flex-grow: 1; /* Allow input to take remaining space */
    border-left: none; /* Remove border between prefix and input */
    width: 60%;
  }

  /* Button container */
  .input-group-append-hero {
    width: 80%;
    display: flex;
    justify-content: center;
    margin-top: 2vh;
  }

  /* Button styling */
  .create-link-btn-hero {
    font-size: 5.5vw;
    padding: 2.5vh;
    width: 100%;
    border-radius: 5vw;
  }

  .create-link-btn-hero:hover {
    background-color: #75eeec;
  }

  .create-link-btn-hero:hover {
    background-color: #75eeec;
  }

  /* Error Message Styling */
  .text-danger-hero {
    color: #dc3545;
    font-size: 4vw;
    margin-top: 1vh;
  }

  /* Image Content */
  .image-content-hero {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 2vh;
  }
  .img-fluid-hero {
    width: 112%;
    height: 100%;
    margin-top: -20vw;
  }

  /* Mobile-Only Hero Section */
  .hero-section-unique-mobile {
    background-color: #a89ed4;
    background-repeat: no-repeat;
    background-position: center Top;
    padding-top: 20vh;
    margin-top: -10vh;
    display: flex;
    height: 140vh;
    align-items: center;
    justify-content: center;
    margin-bottom: -2.8vh;
  }

  /* Templates Section */
  .templates-section-unique,
  .container-templates,
  .row-templates {
    flex-direction: column;
    align-items: center;
    padding: 1.5vh 0;
    width: 100%;
    overflow: hidden;
  }

  .image-content-templates {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .img-fluid-templates {
    width: 130%;
    margin-top: -10vw;
  }
  .text-content-templates {
    width: 100%;
    padding: 2vw;
    text-align: left;
  }

  .text-content-templates h2.template-heading {
    font-size: 7vw;
    margin-left: 5px;
  }

  .text-content-templates p.template-description {
    font-size: 4.5vw;
    padding-left: 0.5vw;
    line-height: 1.6;
    margin-left: 5px;
  }

  .create-link-btn-templates {
    font-size: 5.5vw;
    padding: 2.5vh;
    width: 70%;
    border-radius: 5vw;
    margin-left: 15vw;
  }

  /* vCard Section */
  .vcard-section-unique {
    padding: 5vh 0; /* Adjust padding for mobile */
  }

  .container-vcard {
    flex-direction: column; /* Stack items vertically */
    padding-left: 5vw; /* Adjust padding for mobile */
    padding-right: 5vw; /* Adjust padding for mobile */
  }

  .row-vcard {
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items */
  }

  /* Text Content */
  .text-content-vcard {
    width: 100%; /* Full width on mobile */
    opacity: 1; /* Ensure text is visible */
    transform: translateY(0); /* Reset transform */
    text-align: center; /* Center text */
    margin-bottom: 5vh; /* Add space between text and image */
  }

  .vcard-heading {
    font-size: 6vw;
    width: 100%;
    text-align: left;
    margin-left: -7px;
  }

  .vcard-description {
    font-size: 4.5vw;
    width: 100%;
    margin-left: 0;
    text-align: left;
  }

  .vcard-subtext {
    font-size: 4.5vw;
    width: 100%;
    margin-left: 0;
    text-align: left;
  }

  .create-link-btn-vcard {
    padding: 2.5vh;
    border-radius: 5vw; /* Adjust button padding for mobile */
    font-size: 5.5vw; /* Increase button font size for mobile */
    margin-left: 0; /* Reset margin */
    width: 70%;
  }

  /* Image Content */
  .image-content-vcard {
    width: 100%; /* Full width on mobile */
    opacity: 1; /* Ensure image is visible */
    transform: translateY(0); /* Reset transform */
  }

  .img-fluid-vcard {
    max-width: 110%; /* Adjust image size for mobile */
    margin-left: 0; /* Reset margin */
    margin-top: -15vw;
  }

  /* Disable hover effects on mobile */
  .image-content-vcard:hover .img-fluid-vcard {
    animation: none; /* Disable zoom animation on mobile */
  }
  /* Ensure the animation works for mobile */
  .text-content-vcard,
  .image-content-vcard {
    opacity: 0; /* Initially hidden */
    transform: translateY(50px); /* Start 50px below */
    transition:
      opacity 0.8s ease-out,
      transform 0.8s ease-out;
  }

  /* Active State for Animation */
  .vcard-section-unique.active .text-content-vcard,
  .vcard-section-unique.active .image-content-vcard {
    opacity: 1; /* Fully visible */
    transform: translateY(0); /* Move to final position */
  }

  /* Image Zoom Effect on Hover (Optional for Mobile) */
  .image-content-vcard:hover .img-fluid-vcard {
    animation: zoomInOut 2s infinite ease-in-out;
  }

  /* Dashboard Section - Mobile */
  .dashboard-section-unique {
    padding: 5vh 0; /* Adjust padding for mobile */
  }

  .container-dashboard {
    flex-direction: column; /* Stack items vertically */
    padding-left: 5vw; /* Adjust padding for mobile */
    padding-right: 5vw; /* Adjust padding for mobile */
  }

  .row-dashboard {
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items */
  }

  /* Text Content */
  .text-content-dashboard {
    width: 100%; /* Full width on mobile */
    opacity: 0; /* Initially hidden */
    transform: translateX(-100%); /* Start off-screen to the left */
    transition:
      opacity 0.8s ease-out,
      transform 0.8s ease-out;
    text-align: center; /* Center text */
    margin-top: 5vh; /* Add space between image and text */
  }

  .dashboard-heading {
    font-size: 7vw;
    width: 100%;
    margin-bottom: 2vh;
    text-align: left;
    margin-left: -5px;
    margin-top: -18vw;
  }

  .dashboard-subheading {
    font-size: 4.5vw;
    width: 100%;
    margin-left: 0;
    text-align: left;
  }

  .dashboard-description {
    font-size: 4.5vw;
    width: 100%;
    margin-left: 0;
    text-align: left;
  }

  .create-link-btn-dashboard {
    font-size: 5.5vw;
    padding: 2.5vh;
    width: 70%;
    border-radius: 5vw;
    margin-left: -8vw;
  }

  /* Image Content */
  .image-content-dashboard {
    width: 100%; /* Full width on mobile */
    opacity: 0; /* Initially hidden */
    transform: translateX(100%); /* Start off-screen to the right */
    transition:
      opacity 0.8s ease-out,
      transform 0.8s ease-out;
  }

  .img-fluid-dashboard {
    max-width: 110%; /* Adjust image size for mobile */
    margin-left: 0; /* Reset margin */
    margin-top: -20vw;
  }

  /* Active State for Animation */
  .dashboard-section-unique.active .text-content-dashboard,
  .dashboard-section-unique.active .image-content-dashboard {
    opacity: 1; /* Fully visible */
    transform: translateX(0); /* Move to final position */
  }

  /* Features Section */
  .features-section-unique {
    padding: 8vh 4vw;
  }

  .section-title-features {
    font-size: 8vw;
    margin-bottom: 4vh;
  }

  .feature-boxes-container {
    grid-template-columns: 1fr;
    gap: 5vw;
    max-width: 90vw;
    margin: 0 auto;
  }

  .feature-box-item {
    padding: 6vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
  }

  .feature-box-item p {
    font-size: 5.5vw;
  }

  .heart-icon {
    width: 12vw;
    height: 12vw;
    margin-bottom: 3vh;
  }

  /* How it Works Section */
  .how-it-works-section-unique {
    padding: 8vh 4vw;
    width: 100%;
  }
  .step-number-circle {
    font-size: 4vw;
  }

  .container-how-it-works {
    max-width: 100%;
    margin: 0 auto;
  }

  .how-it-works-heading {
    font-size: 10vw;
    margin-bottom: 4vh;
  }

  .row-how-it-works {
    display: flex;
    flex-direction: column;
    gap: 5vw;
  }

  .step-box {
    padding: 6vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
    width: 100%;
  }

  .step-title {
    font-size: 7vw;
  }

  .step-description {
    font-size: 4.5vw;
    line-height: 1.6;
    padding-left: 0.5vw;
  }

  /* Make the step number circle larger and more prominent */
  .step-number-circle {
    font-size: 8vw; /* Increase the size of the number */
    background-color: #0b2a44; /* Add a background color */
    color: white;
    width: 10vw; /* Adjust the size of the circle */
    height: 10vw;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4vh; /* Add spacing below the circle */
    box-shadow: 0 1vw 2vw rgba(0, 0, 0, 0.1);
  }

  /* Trusted Section */
  /* Trusted Section - Mobile */
  .trusted-section-unique {
    padding: 5vh 0; /* Adjust padding for mobile */
  }

  .container-trusted {
    padding: 0 5vw; /* Add side padding for mobile */
  }

  /* Star Rating */
  .star-rating {
    margin-bottom: 2vh; /* Adjust margin for mobile */
  }

  .star-icon {
    width: 6vw; /* Increase star size for mobile */
    height: 6vw; /* Increase star size for mobile */
    margin: 0 1vw; /* Adjust spacing for mobile */
  }

  /* Trusted Title */
  .trusted-title {
    font-size: 5vw; /* Increase font size for mobile */
    margin-bottom: 3vh; /* Adjust margin for mobile */
  }

  /* Slider Wrapper */
  .slider-wrapper {
    margin: 20px 0; /* Adjust margin for mobile */
  }

  .slider-container {
    gap: 4vw; /* Increase gap between items for mobile */
    animation: scroll-left 15s linear infinite; /* Adjust animation speed for mobile */
  }

  /* Slider Item */
  .slider-item {
    height: 150px; /* Reduce height for mobile */
    width: 130px; /* Reduce width for mobile */
  }

  /* Hover Effects (Optional for Mobile) */
  .slider-item:hover {
    transform: scale(1.05); /* Reduce scale effect for mobile */
  }

  /* Front and Back Faces */
  .slider-item-front,
  .slider-item-back {
    font-size: 0.9rem; /* Reduce font size for mobile */
  }

  /* Username Styling */
  .trusted-username {
    font-size: 0.9rem; /* Reduce font size for mobile */
  }
}

@media (min-width: 361px) and (max-width: 390px) {
  /* General Adjustments */
  body {
    text-align: left;
    width: 100%;
  }

  .hero-section-unique {
    background-color: #a89ed4;
    background-size: cover;
    background-position: right center;
    padding-top: 22.08vh; /* 40px */
    margin-top: -20vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    height: 160%;
  }

  .container-hero,
  .row-hero {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding-top: 4vh;
  }

  .text-content-hero {
    width: 100%;
    text-align: left;
    margin-top: -2.5%;
    margin-left: -4vw;
  }

  .hero-heading {
    font-size: 10.5vw;
    padding-top: 0vh;
    width: 110%;
    text-align: left;
  }

  .hero-links-text,
  .domain-box-hero {
    font-size: 7.7vw;
    text-align: left;
    width: 100%;
    margin-top: -1.5vh;
  }

  /* Parent container for prefix, input, and button */
  /* Parent container for the input group */
  .input-group-hero {
    display: flex;
    flex-direction: column; /* Stack the input row and button vertically */
    align-items: center;
    width: 100%;
    margin-bottom: 2vh;
  }

  /* Container for prefix and input field */
  .input-group-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%; /* Adjust the width as needed */
    margin-bottom: 2vh;
    gap: 0;
  }

  /* Prefix text styling */
  .input-group-text-hero {
    font-size: 5.5vw;
    padding: 2.5vh;
    border-radius: 2vw 0 0 2vw;
    text-align: center;
    flex-shrink: 0; /* Prevent shrinking */
  }

  /* Input field styling */
  .username-input-field {
    font-size: 5.5vw;
    padding: 2.5vh;
    border-radius: 0 2vw 2vw 0;
    padding-left: 1.5vw;
    flex-grow: 1; /* Allow input to take remaining space */
    border-left: none; /* Remove border between prefix and input */
    width: 60%;
  }

  /* Button container */
  .input-group-append-hero {
    width: 80%;
    display: flex;
    justify-content: center;
    margin-top: 2vh;
  }

  /* Button styling */
  .create-link-btn-hero {
    font-size: 5.5vw;
    padding: 2.5vh;
    width: 100%;
    border-radius: 5vw;
  }

  .create-link-btn-hero:hover {
    background-color: #75eeec;
  }

  .create-link-btn-hero:hover {
    background-color: #75eeec;
  }

  /* Error Message Styling */
  .text-danger-hero {
    color: #dc3545;
    font-size: 4vw;
    margin-top: 1vh;
  }

  /* Image Content */
  .image-content-hero {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 2vh;
  }
  .img-fluid-hero {
    width: 112%;
    height: 100%;
    margin-top: -20vw;
  }

  /* Mobile-Only Hero Section */
  .hero-section-unique-mobile {
    background-color: #a89ed4;
    background-repeat: no-repeat;
    background-position: center Top;
    padding-top: 10vh;
    margin-top: -10vh;
    display: flex;
    height: 140vh;
    align-items: center;
    justify-content: center;
    margin-bottom: -10.8vh;
  }

  /* Templates Section */
  .templates-section-unique,
  .container-templates,
  .row-templates {
    flex-direction: column;
    align-items: center;
    padding: 1.5vh 0;
    width: 100%;
    overflow: hidden;
  }

  .image-content-templates {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .img-fluid-templates {
    width: 130%;
    margin-top: -10vw;
  }
  .text-content-templates {
    width: 100%;
    padding: 2vw;
    text-align: left;
  }

  .text-content-templates h2.template-heading {
    font-size: 7vw;
    margin-left: 5px;
  }

  .text-content-templates p.template-description {
    font-size: 4.5vw;
    padding-left: 0.5vw;
    line-height: 1.6;
    margin-left: 5px;
  }

  .create-link-btn-templates {
    font-size: 5.5vw;
    padding: 2.5vh;
    width: 70%;
    border-radius: 5vw;
    margin-left: 15vw;
  }

  /* vCard Section */
  .vcard-section-unique {
    padding: 5vh 0; /* Adjust padding for mobile */
  }

  .container-vcard {
    flex-direction: column; /* Stack items vertically */
    padding-left: 5vw; /* Adjust padding for mobile */
    padding-right: 5vw; /* Adjust padding for mobile */
  }

  .row-vcard {
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items */
  }

  /* Text Content */
  .text-content-vcard {
    width: 100%; /* Full width on mobile */
    opacity: 1; /* Ensure text is visible */
    transform: translateY(0); /* Reset transform */
    text-align: center; /* Center text */
    margin-bottom: 5vh; /* Add space between text and image */
  }

  .vcard-heading {
    font-size: 6vw;
    width: 100%;
    text-align: left;
    margin-left: -7px;
  }

  .vcard-description {
    font-size: 4.5vw;
    width: 100%;
    margin-left: 0;
    text-align: left;
  }

  .vcard-subtext {
    font-size: 4.5vw;
    width: 100%;
    margin-left: 0;
    text-align: left;
  }

  .create-link-btn-vcard {
    padding: 2.5vh;
    border-radius: 5vw; /* Adjust button padding for mobile */
    font-size: 5.5vw; /* Increase button font size for mobile */
    margin-left: 0; /* Reset margin */
    width: 70%;
  }

  /* Image Content */
  .image-content-vcard {
    width: 100%; /* Full width on mobile */
    opacity: 1; /* Ensure image is visible */
    transform: translateY(0); /* Reset transform */
  }

  .img-fluid-vcard {
    max-width: 110%; /* Adjust image size for mobile */
    margin-left: 0; /* Reset margin */
    margin-top: -15vw;
  }

  /* Disable hover effects on mobile */
  .image-content-vcard:hover .img-fluid-vcard {
    animation: none; /* Disable zoom animation on mobile */
  }
  /* Ensure the animation works for mobile */
  .text-content-vcard,
  .image-content-vcard {
    opacity: 0; /* Initially hidden */
    transform: translateY(50px); /* Start 50px below */
    transition:
      opacity 0.8s ease-out,
      transform 0.8s ease-out;
  }

  /* Active State for Animation */
  .vcard-section-unique.active .text-content-vcard,
  .vcard-section-unique.active .image-content-vcard {
    opacity: 1; /* Fully visible */
    transform: translateY(0); /* Move to final position */
  }

  /* Image Zoom Effect on Hover (Optional for Mobile) */
  .image-content-vcard:hover .img-fluid-vcard {
    animation: zoomInOut 2s infinite ease-in-out;
  }

  /* Dashboard Section - Mobile */
  .dashboard-section-unique {
    padding: 5vh 0; /* Adjust padding for mobile */
  }

  .container-dashboard {
    flex-direction: column; /* Stack items vertically */
    padding-left: 5vw; /* Adjust padding for mobile */
    padding-right: 5vw; /* Adjust padding for mobile */
  }

  .row-dashboard {
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items */
  }

  /* Text Content */
  .text-content-dashboard {
    width: 100%; /* Full width on mobile */
    opacity: 0; /* Initially hidden */
    transform: translateX(-100%); /* Start off-screen to the left */
    transition:
      opacity 0.8s ease-out,
      transform 0.8s ease-out;
    text-align: center; /* Center text */
    margin-top: 5vh; /* Add space between image and text */
  }

  .dashboard-heading {
    font-size: 7vw;
    width: 100%;
    margin-bottom: 2vh;
    text-align: left;
    margin-left: -5px;
    margin-top: -18vw;
  }

  .dashboard-subheading {
    font-size: 4.5vw;
    width: 100%;
    margin-left: 0;
    text-align: left;
  }

  .dashboard-description {
    font-size: 4.5vw;
    width: 100%;
    margin-left: 0;
    text-align: left;
  }

  .create-link-btn-dashboard {
    font-size: 5.5vw;
    padding: 2.5vh;
    width: 70%;
    border-radius: 5vw;
    margin-left: -8vw;
  }

  /* Image Content */
  .image-content-dashboard {
    width: 100%; /* Full width on mobile */
    opacity: 0; /* Initially hidden */
    transform: translateX(100%); /* Start off-screen to the right */
    transition:
      opacity 0.8s ease-out,
      transform 0.8s ease-out;
  }

  .img-fluid-dashboard {
    max-width: 110%; /* Adjust image size for mobile */
    margin-left: 0; /* Reset margin */
    margin-top: -20vw;
  }

  /* Active State for Animation */
  .dashboard-section-unique.active .text-content-dashboard,
  .dashboard-section-unique.active .image-content-dashboard {
    opacity: 1; /* Fully visible */
    transform: translateX(0); /* Move to final position */
  }

  /* Features Section */
  .features-section-unique {
    padding: 8vh 4vw;
  }

  .section-title-features {
    font-size: 8vw;
    margin-bottom: 4vh;
  }

  .feature-boxes-container {
    grid-template-columns: 1fr;
    gap: 5vw;
    max-width: 90vw;
    margin: 0 auto;
  }

  .feature-box-item {
    padding: 6vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
  }

  .feature-box-item p {
    font-size: 5.5vw;
  }

  .heart-icon {
    width: 12vw;
    height: 12vw;
    margin-bottom: 3vh;
  }

  /* How it Works Section */
  .how-it-works-section-unique {
    padding: 8vh 4vw;
    width: 100%;
  }
  .step-number-circle {
    font-size: 4vw;
  }

  .container-how-it-works {
    max-width: 100%;
    margin: 0 auto;
  }

  .how-it-works-heading {
    font-size: 10vw;
    margin-bottom: 4vh;
  }

  .row-how-it-works {
    display: flex;
    flex-direction: column;
    gap: 5vw;
  }

  .step-box {
    padding: 6vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
    width: 100%;
  }

  .step-title {
    font-size: 7vw;
  }

  .step-description {
    font-size: 4.5vw;
    line-height: 1.6;
    padding-left: 0.5vw;
  }

  /* Make the step number circle larger and more prominent */
  .step-number-circle {
    font-size: 8vw; /* Increase the size of the number */
    background-color: #0b2a44; /* Add a background color */
    color: white;
    width: 10vw; /* Adjust the size of the circle */
    height: 10vw;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4vh; /* Add spacing below the circle */
    box-shadow: 0 1vw 2vw rgba(0, 0, 0, 0.1);
  }

  /* Trusted Section */
  /* Trusted Section - Mobile */
  .trusted-section-unique {
    padding: 5vh 0; /* Adjust padding for mobile */
  }

  .container-trusted {
    padding: 0 5vw; /* Add side padding for mobile */
  }

  /* Star Rating */
  .star-rating {
    margin-bottom: 2vh; /* Adjust margin for mobile */
  }

  .star-icon {
    width: 6vw; /* Increase star size for mobile */
    height: 6vw; /* Increase star size for mobile */
    margin: 0 1vw; /* Adjust spacing for mobile */
  }

  /* Trusted Title */
  .trusted-title {
    font-size: 5vw; /* Increase font size for mobile */
    margin-bottom: 3vh; /* Adjust margin for mobile */
  }

  /* Slider Wrapper */
  .slider-wrapper {
    margin: 20px 0; /* Adjust margin for mobile */
  }

  .slider-container {
    gap: 4vw; /* Increase gap between items for mobile */
    animation: scroll-left 15s linear infinite; /* Adjust animation speed for mobile */
  }

  /* Slider Item */
  .slider-item {
    height: 150px; /* Reduce height for mobile */
    width: 130px; /* Reduce width for mobile */
  }

  /* Hover Effects (Optional for Mobile) */
  .slider-item:hover {
    transform: scale(1.05); /* Reduce scale effect for mobile */
  }

  /* Front and Back Faces */
  .slider-item-front,
  .slider-item-back {
    font-size: 0.9rem; /* Reduce font size for mobile */
  }

  /* Username Styling */
  .trusted-username {
    font-size: 0.9rem; /* Reduce font size for mobile */
  }
}

@media (min-width: 391px) and (max-width: 400px) {
  /* General Adjustments */
  body {
    text-align: left;
    width: 100%;
  }

  .hero-section-unique {
    background-color: #a89ed4;
    background-size: cover;
    background-position: right center;
    padding-top: 22.08vh; /* 40px */
    margin-top: -20vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    height: 160%;
  }

  .container-hero,
  .row-hero {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding-top: 4vh;
  }

  .text-content-hero {
    width: 100%;
    text-align: left;
    margin-top: -2.5%;
    margin-left: -4vw;
  }

  .hero-heading {
    font-size: 10.5vw;
    padding-top: 0vh;
    width: 110%;
    text-align: left;
  }

  .hero-links-text,
  .domain-box-hero {
    font-size: 7.7vw;
    text-align: left;
    width: 100%;
    margin-top: -1.5vh;
  }

  /* Parent container for prefix, input, and button */
  /* Parent container for the input group */
  .input-group-hero {
    display: flex;
    flex-direction: column; /* Stack the input row and button vertically */
    align-items: center;
    width: 100%;
    margin-bottom: 2vh;
  }

  /* Container for prefix and input field */
  .input-group-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%; /* Adjust the width as needed */
    margin-bottom: 2vh;
    gap: 0;
  }

  /* Prefix text styling */
  .input-group-text-hero {
    font-size: 5.5vw;
    padding: 2.5vh;
    border-radius: 2vw 0 0 2vw;
    text-align: center;
    flex-shrink: 0; /* Prevent shrinking */
  }

  /* Input field styling */
  .username-input-field {
    font-size: 5.5vw;
    padding: 2.5vh;
    border-radius: 0 2vw 2vw 0;
    padding-left: 1.5vw;
    flex-grow: 1; /* Allow input to take remaining space */
    border-left: none; /* Remove border between prefix and input */
    width: 60%;
  }

  /* Button container */
  .input-group-append-hero {
    width: 80%;
    display: flex;
    justify-content: center;
    margin-top: 2vh;
  }

  /* Button styling */
  .create-link-btn-hero {
    font-size: 5.5vw;
    padding: 2.5vh;
    width: 100%;
    border-radius: 5vw;
  }

  .create-link-btn-hero:hover {
    background-color: #75eeec;
  }

  .create-link-btn-hero:hover {
    background-color: #75eeec;
  }

  /* Error Message Styling */
  .text-danger-hero {
    color: #dc3545;
    font-size: 4vw;
    margin-top: 1vh;
  }

  /* Image Content */
  .image-content-hero {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 2vh;
  }
  .img-fluid-hero {
    width: 112%;
    height: 100%;
    margin-top: -20vw;
  }

  /* Mobile-Only Hero Section */
  .hero-section-unique-mobile {
    background-color: #a89ed4;
    background-repeat: no-repeat;
    background-position: center Top;
    padding-top: 30vh;
    margin-top: -10vh;
    display: flex;
    height: 140vh;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.2vh;
  }

  /* Templates Section */
  .templates-section-unique,
  .container-templates,
  .row-templates {
    flex-direction: column;
    align-items: center;
    padding: 1.5vh 0;
    width: 100%;
    overflow: hidden;
  }

  .image-content-templates {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .img-fluid-templates {
    width: 130%;
    margin-top: -10vw;
  }
  .text-content-templates {
    width: 100%;
    padding: 2vw;
    text-align: left;
  }

  .text-content-templates h2.template-heading {
    font-size: 7vw;
    margin-left: 5px;
  }

  .text-content-templates p.template-description {
    font-size: 4.5vw;
    padding-left: 0.5vw;
    line-height: 1.6;
    margin-left: 5px;
  }

  .create-link-btn-templates {
    font-size: 5.5vw;
    padding: 2.5vh;
    width: 70%;
    border-radius: 5vw;
    margin-left: 15vw;
  }

  /* vCard Section */
  .vcard-section-unique {
    padding: 5vh 0; /* Adjust padding for mobile */
  }

  .container-vcard {
    flex-direction: column; /* Stack items vertically */
    padding-left: 5vw; /* Adjust padding for mobile */
    padding-right: 5vw; /* Adjust padding for mobile */
  }

  .row-vcard {
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items */
  }

  /* Text Content */
  .text-content-vcard {
    width: 100%; /* Full width on mobile */
    opacity: 1; /* Ensure text is visible */
    transform: translateY(0); /* Reset transform */
    text-align: center; /* Center text */
    margin-bottom: 5vh; /* Add space between text and image */
  }

  .vcard-heading {
    font-size: 6vw;
    width: 100%;
    text-align: left;
    margin-left: -7px;
  }

  .vcard-description {
    font-size: 4.5vw;
    width: 100%;
    margin-left: 0;
    text-align: left;
  }

  .vcard-subtext {
    font-size: 4.5vw;
    width: 100%;
    margin-left: 0;
    text-align: left;
  }

  .create-link-btn-vcard {
    padding: 2.5vh;
    border-radius: 5vw; /* Adjust button padding for mobile */
    font-size: 5.5vw; /* Increase button font size for mobile */
    margin-left: 0; /* Reset margin */
    width: 70%;
  }

  /* Image Content */
  .image-content-vcard {
    width: 100%; /* Full width on mobile */
    opacity: 1; /* Ensure image is visible */
    transform: translateY(0); /* Reset transform */
  }

  .img-fluid-vcard {
    max-width: 110%; /* Adjust image size for mobile */
    margin-left: 0; /* Reset margin */
    margin-top: -15vw;
  }

  /* Disable hover effects on mobile */
  .image-content-vcard:hover .img-fluid-vcard {
    animation: none; /* Disable zoom animation on mobile */
  }
  /* Ensure the animation works for mobile */
  .text-content-vcard,
  .image-content-vcard {
    opacity: 0; /* Initially hidden */
    transform: translateY(50px); /* Start 50px below */
    transition:
      opacity 0.8s ease-out,
      transform 0.8s ease-out;
  }

  /* Active State for Animation */
  .vcard-section-unique.active .text-content-vcard,
  .vcard-section-unique.active .image-content-vcard {
    opacity: 1; /* Fully visible */
    transform: translateY(0); /* Move to final position */
  }

  /* Image Zoom Effect on Hover (Optional for Mobile) */
  .image-content-vcard:hover .img-fluid-vcard {
    animation: zoomInOut 2s infinite ease-in-out;
  }

  /* Dashboard Section - Mobile */
  .dashboard-section-unique {
    padding: 5vh 0; /* Adjust padding for mobile */
  }

  .container-dashboard {
    flex-direction: column; /* Stack items vertically */
    padding-left: 5vw; /* Adjust padding for mobile */
    padding-right: 5vw; /* Adjust padding for mobile */
  }

  .row-dashboard {
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items */
  }

  /* Text Content */
  .text-content-dashboard {
    width: 100%; /* Full width on mobile */
    opacity: 0; /* Initially hidden */
    transform: translateX(-100%); /* Start off-screen to the left */
    transition:
      opacity 0.8s ease-out,
      transform 0.8s ease-out;
    text-align: center; /* Center text */
    margin-top: 5vh; /* Add space between image and text */
  }

  .dashboard-heading {
    font-size: 7vw;
    width: 100%;
    margin-bottom: 2vh;
    text-align: left;
    margin-left: -5px;
    margin-top: -18vw;
  }

  .dashboard-subheading {
    font-size: 4.5vw;
    width: 100%;
    margin-left: 0;
    text-align: left;
  }

  .dashboard-description {
    font-size: 4.5vw;
    width: 100%;
    margin-left: 0;
    text-align: left;
  }

  .create-link-btn-dashboard {
    font-size: 5.5vw;
    padding: 2.5vh;
    width: 70%;
    border-radius: 5vw;
    margin-left: -8vw;
  }

  /* Image Content */
  .image-content-dashboard {
    width: 100%; /* Full width on mobile */
    opacity: 0; /* Initially hidden */
    transform: translateX(100%); /* Start off-screen to the right */
    transition:
      opacity 0.8s ease-out,
      transform 0.8s ease-out;
  }

  .img-fluid-dashboard {
    max-width: 110%; /* Adjust image size for mobile */
    margin-left: 0; /* Reset margin */
    margin-top: -20vw;
  }

  /* Active State for Animation */
  .dashboard-section-unique.active .text-content-dashboard,
  .dashboard-section-unique.active .image-content-dashboard {
    opacity: 1; /* Fully visible */
    transform: translateX(0); /* Move to final position */
  }

  /* Features Section */
  .features-section-unique {
    padding: 8vh 4vw;
  }

  .section-title-features {
    font-size: 8vw;
    margin-bottom: 4vh;
  }

  .feature-boxes-container {
    grid-template-columns: 1fr;
    gap: 5vw;
    max-width: 90vw;
    margin: 0 auto;
  }

  .feature-box-item {
    padding: 6vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
  }

  .feature-box-item p {
    font-size: 5.5vw;
  }

  .heart-icon {
    width: 12vw;
    height: 12vw;
    margin-bottom: 3vh;
  }

  /* How it Works Section */
  .how-it-works-section-unique {
    padding: 8vh 4vw;
    width: 100%;
  }
  .step-number-circle {
    font-size: 4vw;
  }

  .container-how-it-works {
    max-width: 100%;
    margin: 0 auto;
  }

  .how-it-works-heading {
    font-size: 10vw;
    margin-bottom: 4vh;
  }

  .row-how-it-works {
    display: flex;
    flex-direction: column;
    gap: 5vw;
  }

  .step-box {
    padding: 6vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
    width: 100%;
  }

  .step-title {
    font-size: 7vw;
  }

  .step-description {
    font-size: 4.5vw;
    line-height: 1.6;
    padding-left: 0.5vw;
  }

  /* Make the step number circle larger and more prominent */
  .step-number-circle {
    font-size: 8vw; /* Increase the size of the number */
    background-color: #0b2a44; /* Add a background color */
    color: white;
    width: 10vw; /* Adjust the size of the circle */
    height: 10vw;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4vh; /* Add spacing below the circle */
    box-shadow: 0 1vw 2vw rgba(0, 0, 0, 0.1);
  }

  /* Trusted Section */
  /* Trusted Section - Mobile */
  .trusted-section-unique {
    padding: 5vh 0; /* Adjust padding for mobile */
  }

  .container-trusted {
    padding: 0 5vw; /* Add side padding for mobile */
  }

  /* Star Rating */
  .star-rating {
    margin-bottom: 2vh; /* Adjust margin for mobile */
  }

  .star-icon {
    width: 6vw; /* Increase star size for mobile */
    height: 6vw; /* Increase star size for mobile */
    margin: 0 1vw; /* Adjust spacing for mobile */
  }

  /* Trusted Title */
  .trusted-title {
    font-size: 5vw; /* Increase font size for mobile */
    margin-bottom: 3vh; /* Adjust margin for mobile */
  }

  /* Slider Wrapper */
  .slider-wrapper {
    margin: 20px 0; /* Adjust margin for mobile */
  }

  .slider-container {
    gap: 4vw; /* Increase gap between items for mobile */
    animation: scroll-left 15s linear infinite; /* Adjust animation speed for mobile */
  }

  /* Slider Item */
  .slider-item {
    height: 150px; /* Reduce height for mobile */
    width: 130px; /* Reduce width for mobile */
  }

  /* Hover Effects (Optional for Mobile) */
  .slider-item:hover {
    transform: scale(1.05); /* Reduce scale effect for mobile */
  }

  /* Front and Back Faces */
  .slider-item-front,
  .slider-item-back {
    font-size: 0.9rem; /* Reduce font size for mobile */
  }

  /* Username Styling */
  .trusted-username {
    font-size: 0.9rem; /* Reduce font size for mobile */
  }
}

@media (min-width: 401px) and (max-width: 540px) {
  /* General Adjustments */
  body {
    text-align: left;
    width: 100%;
  }

  .hero-section-unique {
    background-color: #a89ed4;
    background-size: cover;
    background-position: right center;
    padding-top: 22.08vh; /* 40px */
    margin-top: -20vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    height: 160%;
  }

  .container-hero,
  .row-hero {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding-top: 4vh;
  }

  .text-content-hero {
    width: 100%;
    text-align: left;
    margin-top: -2.5%;
    margin-left: -4vw;
  }

  .hero-heading {
    font-size: 10.5vw;
    padding-top: 0vh;
    width: 110%;
    text-align: left;
  }

  .hero-links-text,
  .domain-box-hero {
    font-size: 7.7vw;
    text-align: left;
    width: 100%;
    margin-top: -1.5vh;
  }

  /* Parent container for prefix, input, and button */
  /* Parent container for the input group */
  .input-group-hero {
    display: flex;
    flex-direction: column; /* Stack the input row and button vertically */
    align-items: center;
    width: 100%;
    margin-bottom: 2vh;
  }

  /* Container for prefix and input field */
  .input-group-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%; /* Adjust the width as needed */
    margin-bottom: 2vh;
    gap: 0;
  }

  /* Prefix text styling */
  .input-group-text-hero {
    font-size: 5.5vw;
    padding: 2.5vh;
    border-radius: 2vw 0 0 2vw;
    text-align: center;
    flex-shrink: 0; /* Prevent shrinking */
  }

  /* Input field styling */
  .username-input-field {
    font-size: 5.5vw;
    padding: 2.5vh;
    border-radius: 0 2vw 2vw 0;
    padding-left: 1.5vw;
    flex-grow: 1; /* Allow input to take remaining space */
    border-left: none; /* Remove border between prefix and input */
    width: 60%;
  }

  /* Button container */
  .input-group-append-hero {
    width: 80%;
    display: flex;
    justify-content: center;
    margin-top: 2vh;
  }

  /* Button styling */
  .create-link-btn-hero {
    font-size: 5.5vw;
    padding: 2.5vh;
    width: 100%;
    border-radius: 5vw;
  }

  .create-link-btn-hero:hover {
    background-color: #75eeec;
  }

  .create-link-btn-hero:hover {
    background-color: #75eeec;
  }

  /* Error Message Styling */
  .text-danger-hero {
    color: #dc3545;
    font-size: 4vw;
    margin-top: 1vh;
  }

  /* Image Content */
  .image-content-hero {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 2vh;
  }
  .img-fluid-hero {
    width: 112%;
    height: 100%;
    margin-top: -20vw;
  }

  /* Mobile-Only Hero Section */
  .hero-section-unique-mobile {
    background-color: #a89ed4; /* Color appears behind the SVG */
    background-repeat: no-repeat;
    background-position: center Top; /* Center the SVG horizontally, align it to the top */
    padding-top: 4vh;
    margin-top: -10vh;
    display: flex;
    height: 140vh;
    align-items: center;
    justify-content: center;
    margin-bottom: -12.8vh;
  }

  /* Templates Section */
  .templates-section-unique,
  .container-templates,
  .row-templates {
    flex-direction: column;
    align-items: center;
    padding: 1.5vh 0;
    width: 100%;
    overflow: hidden;
  }

  .image-content-templates {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .img-fluid-templates {
    width: 130%;
    margin-top: -10vw;
  }
  .text-content-templates {
    width: 100%;
    padding: 2vw;
    text-align: left;
  }

  .text-content-templates h2.template-heading {
    font-size: 7vw;
    margin-left: 5px;
  }

  .text-content-templates p.template-description {
    font-size: 4.5vw;
    padding-left: 0.5vw;
    line-height: 1.6;
    margin-left: 5px;
  }

  .create-link-btn-templates {
    font-size: 5.5vw;
    padding: 2.5vh;
    width: 70%;
    border-radius: 5vw;
    margin-left: 15vw;
  }

  /* vCard Section */
  .vcard-section-unique {
    padding: 5vh 0; /* Adjust padding for mobile */
  }

  .container-vcard {
    flex-direction: column; /* Stack items vertically */
    padding-left: 5vw; /* Adjust padding for mobile */
    padding-right: 5vw; /* Adjust padding for mobile */
  }

  .row-vcard {
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items */
  }

  /* Text Content */
  .text-content-vcard {
    width: 100%; /* Full width on mobile */
    opacity: 1; /* Ensure text is visible */
    transform: translateY(0); /* Reset transform */
    text-align: center; /* Center text */
    margin-bottom: 5vh; /* Add space between text and image */
  }

  .vcard-heading {
    font-size: 6vw;
    width: 100%;
    text-align: left;
    margin-left: -7px;
  }

  .vcard-description {
    font-size: 4.5vw;
    width: 100%;
    margin-left: 0;
    text-align: left;
  }

  .vcard-subtext {
    font-size: 4.5vw;
    width: 100%;
    margin-left: 0;
    text-align: left;
  }

  .create-link-btn-vcard {
    padding: 2.5vh;
    border-radius: 5vw; /* Adjust button padding for mobile */
    font-size: 5.5vw; /* Increase button font size for mobile */
    margin-left: 0; /* Reset margin */
    width: 70%;
  }

  /* Image Content */
  .image-content-vcard {
    width: 100%; /* Full width on mobile */
    opacity: 1; /* Ensure image is visible */
    transform: translateY(0); /* Reset transform */
  }

  .img-fluid-vcard {
    max-width: 110%; /* Adjust image size for mobile */
    margin-left: 0; /* Reset margin */
    margin-top: -15vw;
  }

  /* Disable hover effects on mobile */
  .image-content-vcard:hover .img-fluid-vcard {
    animation: none; /* Disable zoom animation on mobile */
  }
  /* Ensure the animation works for mobile */
  .text-content-vcard,
  .image-content-vcard {
    opacity: 0; /* Initially hidden */
    transform: translateY(50px); /* Start 50px below */
    transition:
      opacity 0.8s ease-out,
      transform 0.8s ease-out;
  }

  /* Active State for Animation */
  .vcard-section-unique.active .text-content-vcard,
  .vcard-section-unique.active .image-content-vcard {
    opacity: 1; /* Fully visible */
    transform: translateY(0); /* Move to final position */
  }

  /* Image Zoom Effect on Hover (Optional for Mobile) */
  .image-content-vcard:hover .img-fluid-vcard {
    animation: zoomInOut 2s infinite ease-in-out;
  }

  /* Dashboard Section - Mobile */
  .dashboard-section-unique {
    padding: 5vh 0; /* Adjust padding for mobile */
  }

  .container-dashboard {
    flex-direction: column; /* Stack items vertically */
    padding-left: 5vw; /* Adjust padding for mobile */
    padding-right: 5vw; /* Adjust padding for mobile */
  }

  .row-dashboard {
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items */
  }

  /* Text Content */
  .text-content-dashboard {
    width: 100%; /* Full width on mobile */
    opacity: 0; /* Initially hidden */
    transform: translateX(-100%); /* Start off-screen to the left */
    transition:
      opacity 0.8s ease-out,
      transform 0.8s ease-out;
    text-align: center; /* Center text */
    margin-top: 5vh; /* Add space between image and text */
  }

  .dashboard-heading {
    font-size: 7vw;
    width: 100%;
    margin-bottom: 2vh;
    text-align: left;
    margin-left: -5px;
    margin-top: -18vw;
  }

  .dashboard-subheading {
    font-size: 4.5vw;
    width: 100%;
    margin-left: 0;
    text-align: left;
  }

  .dashboard-description {
    font-size: 4.5vw;
    width: 100%;
    margin-left: 0;
    text-align: left;
  }

  .create-link-btn-dashboard {
    font-size: 5.5vw;
    padding: 2.5vh;
    width: 70%;
    border-radius: 5vw;
    margin-left: -8vw;
  }

  /* Image Content */
  .image-content-dashboard {
    width: 100%; /* Full width on mobile */
    opacity: 0; /* Initially hidden */
    transform: translateX(100%); /* Start off-screen to the right */
    transition:
      opacity 0.8s ease-out,
      transform 0.8s ease-out;
  }

  .img-fluid-dashboard {
    max-width: 110%; /* Adjust image size for mobile */
    margin-left: 0; /* Reset margin */
    margin-top: -20vw;
  }

  /* Active State for Animation */
  .dashboard-section-unique.active .text-content-dashboard,
  .dashboard-section-unique.active .image-content-dashboard {
    opacity: 1; /* Fully visible */
    transform: translateX(0); /* Move to final position */
  }

  /* Features Section */
  .features-section-unique {
    padding: 8vh 4vw;
  }

  .section-title-features {
    font-size: 8vw;
    margin-bottom: 4vh;
  }

  .feature-boxes-container {
    grid-template-columns: 1fr;
    gap: 5vw;
    max-width: 90vw;
    margin: 0 auto;
  }

  .feature-box-item {
    padding: 6vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
  }

  .feature-box-item p {
    font-size: 5.5vw;
  }

  .heart-icon {
    width: 12vw;
    height: 12vw;
    margin-bottom: 3vh;
  }

  /* How it Works Section */
  .how-it-works-section-unique {
    padding: 8vh 4vw;
    width: 100%;
  }
  .step-number-circle {
    font-size: 4vw;
  }

  .container-how-it-works {
    max-width: 100%;
    margin: 0 auto;
  }

  .how-it-works-heading {
    font-size: 10vw;
    margin-bottom: 4vh;
  }

  .row-how-it-works {
    display: flex;
    flex-direction: column;
    gap: 5vw;
  }

  .step-box {
    padding: 6vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
    width: 100%;
  }

  .step-title {
    font-size: 7vw;
  }

  .step-description {
    font-size: 4.5vw;
    line-height: 1.6;
    padding-left: 0.5vw;
  }

  /* Make the step number circle larger and more prominent */
  .step-number-circle {
    font-size: 8vw; /* Increase the size of the number */
    background-color: #0b2a44; /* Add a background color */
    color: white;
    width: 10vw; /* Adjust the size of the circle */
    height: 10vw;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4vh; /* Add spacing below the circle */
    box-shadow: 0 1vw 2vw rgba(0, 0, 0, 0.1);
  }

  /* Trusted Section */
  /* Trusted Section - Mobile */
  .trusted-section-unique {
    padding: 5vh 0; /* Adjust padding for mobile */
  }

  .container-trusted {
    padding: 0 5vw; /* Add side padding for mobile */
  }

  /* Star Rating */
  .star-rating {
    margin-bottom: 2vh; /* Adjust margin for mobile */
  }

  .star-icon {
    width: 6vw; /* Increase star size for mobile */
    height: 6vw; /* Increase star size for mobile */
    margin: 0 1vw; /* Adjust spacing for mobile */
  }

  /* Trusted Title */
  .trusted-title {
    font-size: 5vw; /* Increase font size for mobile */
    margin-bottom: 3vh; /* Adjust margin for mobile */
  }

  /* Slider Wrapper */
  .slider-wrapper {
    margin: 20px 0; /* Adjust margin for mobile */
  }

  .slider-container {
    gap: 4vw; /* Increase gap between items for mobile */
    animation: scroll-left 15s linear infinite; /* Adjust animation speed for mobile */
  }

  /* Slider Item */
  .slider-item {
    height: 150px; /* Reduce height for mobile */
    width: 130px; /* Reduce width for mobile */
  }

  /* Hover Effects (Optional for Mobile) */
  .slider-item:hover {
    transform: scale(1.05); /* Reduce scale effect for mobile */
  }

  /* Front and Back Faces */
  .slider-item-front,
  .slider-item-back {
    font-size: 0.9rem; /* Reduce font size for mobile */
  }

  /* Username Styling */
  .trusted-username {
    font-size: 0.9rem; /* Reduce font size for mobile */
  }
}

@media (min-width: 541px) and (max-width: 560px) {
  /* General Adjustments */
  body {
    text-align: left;
    width: 100%;
  }

  .hero-section-unique {
    background-image: url("/images/backgrounds/linxhub-image-background.svg");
    background-color: #c0ade1;
    background-size: cover;
    background-position: right center;
    padding-top: 22.08vh; /* 40px */
    margin-top: -20vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    height: 160%;
  }

  .container-hero,
  .row-hero {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding-top: 45vh;
  }

  .text-content-hero {
    width: 100%;
    text-align: left;
    margin-top: -2.5%;
    margin-left: -4vw;
  }

  .hero-heading {
    font-size: 10.5vw;
    padding-top: -1vh;
    width: 110%;
    text-align: left;
  }

  .hero-links-text,
  .domain-box-hero {
    font-size: 7.7vw;
    text-align: left;
    width: 100%;
    margin-top: -1.5vh;
  }

  /* Parent container for prefix, input, and button */
  /* Parent container for the input group */
  .input-group-hero {
    display: flex;
    flex-direction: column; /* Stack the input row and button vertically */
    align-items: center;
    width: 100%;
    margin-bottom: 2vh;
  }

  /* Container for prefix and input field */
  .input-group-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%; /* Adjust the width as needed */
    margin-bottom: 2vh;
    gap: 0;
  }

  /* Prefix text styling */
  .input-group-text-hero {
    font-size: 5.5vw;
    padding: 2.5vh;
    border-radius: 2vw 0 0 2vw;
    text-align: center;
    flex-shrink: 0; /* Prevent shrinking */
  }

  /* Input field styling */
  .username-input-field {
    font-size: 5.5vw;
    padding: 2.5vh;
    border-radius: 0 2vw 2vw 0;
    padding-left: 1.5vw;
    flex-grow: 1; /* Allow input to take remaining space */
    border-left: none; /* Remove border between prefix and input */
    width: 60%;
    margin-top: 0vw;
  }

  /* Button container */
  .input-group-append-hero {
    width: 80%;
    display: flex;
    justify-content: center;
    margin-top: 2vh;
  }

  /* Button styling */
  .create-link-btn-hero {
    font-size: 5.5vw;
    padding: 2.5vh;
    width: 100%;
    border-radius: 5vw;
  }

  .create-link-btn-hero:hover {
    background-color: #75eeec;
  }

  .create-link-btn-hero:hover {
    background-color: #75eeec;
  }

  /* Error Message Styling */
  .text-danger-hero {
    color: #dc3545;
    font-size: 4vw;
    margin-top: 1vh;
  }

  /* Image Content */
  .image-content-hero {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 2vh;
  }

  /* Mobile-Only Hero Section */
  .hero-section-unique-mobile {
    background-image: url("/images/backgrounds/1080_1920.svg");
    background-color: #c0ade1; /* Color appears behind the SVG */
    background-repeat: no-repeat;
    background-position: center Top; /* Center the SVG horizontally, align it to the top */
    padding-top: 4vh;
    margin-top: -10vh;
    display: flex;
    height: 140vh;
    align-items: center;
    justify-content: center;
    margin-bottom: -12.8vh;
  }

  /* Templates Section */
  .templates-section-unique,
  .container-templates,
  .row-templates {
    flex-direction: column;
    align-items: center;
    padding: 1.5vh 0;
    width: 100%;
    overflow: hidden;
  }

  .image-content-templates {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .text-content-templates {
    width: 100%;
    padding: 2vw;
    text-align: left;
  }

  .text-content-templates h2.template-heading {
    font-size: 7vw;
  }

  .text-content-templates p.template-description {
    font-size: 4.5vw;
    padding-left: 0.5vw;
    line-height: 1.6;
  }

  .create-link-btn-templates {
    font-size: 5.5vw;
    padding: 2.5vh;
    width: 70%;
    border-radius: 5vw;
    margin-left: 15vw;
  }

  /* Features Section */
  .features-section-unique {
    padding: 8vh 4vw;
  }

  .section-title-features {
    font-size: 8vw;
    margin-bottom: 4vh;
  }

  .feature-boxes-container {
    grid-template-columns: 1fr;
    gap: 5vw;
    max-width: 90vw;
    margin: 0 auto;
  }

  .feature-box-item {
    padding: 6vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
  }

  .feature-box-item p {
    font-size: 5.5vw;
  }

  .heart-icon {
    width: 12vw;
    height: 12vw;
    margin-bottom: 3vh;
  }

  /* How it Works Section */
  .how-it-works-section-unique {
    padding: 8vh 4vw;
    width: 100%;
  }
  .step-number-circle {
    font-size: 4vw;
  }

  .container-how-it-works {
    max-width: 100%;
    margin: 0 auto;
  }

  .how-it-works-heading {
    font-size: 10vw;
    margin-bottom: 4vh;
  }

  .row-how-it-works {
    display: flex;
    flex-direction: column;
    gap: 5vw;
  }

  .step-box {
    padding: 6vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
    width: 100%;
  }

  .step-title {
    font-size: 7vw;
  }

  .step-description {
    font-size: 4.5vw;
    line-height: 1.6;
    padding-left: 0.5vw;
  }

  /* Make the step number circle larger and more prominent */
  .step-number-circle {
    font-size: 8vw; /* Increase the size of the number */
    background-color: #0b2a44; /* Add a background color */
    color: white;
    width: 10vw; /* Adjust the size of the circle */
    height: 10vw;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4vh; /* Add spacing below the circle */
    box-shadow: 0 1vw 2vw rgba(0, 0, 0, 0.1);
  }

  /* Trusted Section */
  .trusted-section-unique {
    padding: 8vh 4vw;
    width: 100%;
  }

  .container-trusted {
    max-width: 100%;
    margin: 0 auto;
  }

  .trusted-title {
    font-size: 7vw;
    margin-bottom: 5vh;
  }

  /* Slider container without wrapping */
  .slider-container {
    display: flex;
    gap: 5vw;
    padding: 5vw;
    width: 100%;
    scrollbar-width: none; /* Hide scrollbar in Firefox */
  }

  /* Hide scrollbar for WebKit browsers (Chrome, Safari, Edge) */
  .slider-container::-webkit-scrollbar {
    display: none;
  }

  /* Slider items */
  .slider-item {
    display: inline-block; /* Ensure items stay in a single line */
    width: 40vw; /* Adjust width to fit more items in a single line */
    padding: 5vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
    flex-shrink: 0; /* Prevent items from shrinking */
  }

  /* Image inside each slider item */
  .slider-item img.img-fluid-trusted {
    width: 100%;
    height: auto;
    border-radius: 2vw; /* Optional rounding for images */
    object-fit: contain; /* Ensure full logo visibility without cropping */
  }

  /* Username styling */
  .trusted-username {
    font-size: 4vw;
    padding: 3vh;
    border-radius: 2vw;
    text-align: center;
  }
}

@media (min-width: 561px) and (max-width: 575px) {
  /* General Adjustments */
  body {
    text-align: left;
    width: 100%;
  }

  .hero-section-unique {
    background-image: url("/images/backgrounds/linxhub-image-background.svg");
    background-color: #c0ade1;
    background-size: cover;
    background-position: right center;
    padding-top: 22.08vh; /* 40px */
    margin-top: -20vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    height: 160%;
  }

  .container-hero,
  .row-hero {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding-top: 45.5vh;
  }

  .text-content-hero {
    width: 100%;
    text-align: left;
    margin-top: -2.5%;
    margin-left: -4vw;
  }

  .hero-heading {
    font-size: 10.5vw;
    padding-top: -1vh;
    width: 110%;
    text-align: left;
  }

  .hero-links-text,
  .domain-box-hero {
    font-size: 7.7vw;
    text-align: left;
    width: 100%;
    margin-top: -1.5vh;
  }

  /* Parent container for prefix, input, and button */
  /* Parent container for the input group */
  .input-group-hero {
    display: flex;
    flex-direction: column; /* Stack the input row and button vertically */
    align-items: center;
    width: 100%;
    margin-bottom: 2vh;
  }

  /* Container for prefix and input field */
  .input-group-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%; /* Adjust the width as needed */
    margin-bottom: 2vh;
    gap: 0;
  }

  /* Prefix text styling */
  .input-group-text-hero {
    font-size: 5.5vw;
    padding: 2.5vh;
    border-radius: 2vw 0 0 2vw;
    text-align: center;
    flex-shrink: 0; /* Prevent shrinking */
  }

  /* Input field styling */
  .username-input-field {
    font-size: 5.5vw;
    padding: 2.5vh;
    border-radius: 0 2vw 2vw 0;
    padding-left: 1.5vw;
    flex-grow: 1; /* Allow input to take remaining space */
    border-left: none; /* Remove border between prefix and input */
    width: 60%;
  }

  /* Button container */
  .input-group-append-hero {
    width: 80%;
    display: flex;
    justify-content: center;
    margin-top: 2vh;
  }

  /* Button styling */
  .create-link-btn-hero {
    font-size: 5.5vw;
    padding: 2.5vh;
    width: 100%;
    border-radius: 5vw;
  }

  .create-link-btn-hero:hover {
    background-color: #75eeec;
  }

  .create-link-btn-hero:hover {
    background-color: #75eeec;
  }

  /* Error Message Styling */
  .text-danger-hero {
    color: #dc3545;
    font-size: 4vw;
    margin-top: 1vh;
  }

  /* Image Content */
  .image-content-hero {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 2vh;
  }

  /* Mobile-Only Hero Section */
  .hero-section-unique-mobile {
    background-image: url("/images/backgrounds/1080_1920.svg");
    background-color: #c0ade1; /* Color appears behind the SVG */
    background-repeat: no-repeat;
    background-position: center Top; /* Center the SVG horizontally, align it to the top */
    padding-top: 4vh;
    margin-top: -10vh;
    display: flex;
    height: 140vh;
    align-items: center;
    justify-content: center;
    margin-bottom: -12.8vh;
  }

  /* Templates Section */
  .templates-section-unique,
  .container-templates,
  .row-templates {
    flex-direction: column;
    align-items: center;
    padding: 1.5vh 0;
    width: 100%;
    overflow: hidden;
  }

  .image-content-templates {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .text-content-templates {
    width: 100%;
    padding: 2vw;
    text-align: left;
  }

  .text-content-templates h2.template-heading {
    font-size: 7vw;
  }

  .text-content-templates p.template-description {
    font-size: 4.5vw;
    padding-left: 0.5vw;
    line-height: 1.6;
  }

  .create-link-btn-templates {
    font-size: 5.5vw;
    padding: 2.5vh;
    width: 70%;
    border-radius: 5vw;
    margin-left: 15vw;
  }

  /* Features Section */
  .features-section-unique {
    padding: 8vh 4vw;
  }

  .section-title-features {
    font-size: 8vw;
    margin-bottom: 4vh;
  }

  .feature-boxes-container {
    grid-template-columns: 1fr;
    gap: 5vw;
    max-width: 90vw;
    margin: 0 auto;
  }

  .feature-box-item {
    padding: 6vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
  }

  .feature-box-item p {
    font-size: 5.5vw;
  }

  .heart-icon {
    width: 12vw;
    height: 12vw;
    margin-bottom: 3vh;
  }

  /* How it Works Section */
  .how-it-works-section-unique {
    padding: 8vh 4vw;
    width: 100%;
  }
  .step-number-circle {
    font-size: 4vw;
  }

  .container-how-it-works {
    max-width: 100%;
    margin: 0 auto;
  }

  .how-it-works-heading {
    font-size: 10vw;
    margin-bottom: 4vh;
  }

  .row-how-it-works {
    display: flex;
    flex-direction: column;
    gap: 5vw;
  }

  .step-box {
    padding: 6vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
    width: 100%;
  }

  .step-title {
    font-size: 7vw;
  }

  .step-description {
    font-size: 4.5vw;
    line-height: 1.6;
    padding-left: 0.5vw;
  }

  /* Make the step number circle larger and more prominent */
  .step-number-circle {
    font-size: 8vw; /* Increase the size of the number */
    background-color: #0b2a44; /* Add a background color */
    color: white;
    width: 10vw; /* Adjust the size of the circle */
    height: 10vw;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4vh; /* Add spacing below the circle */
    box-shadow: 0 1vw 2vw rgba(0, 0, 0, 0.1);
  }

  /* Trusted Section */
  .trusted-section-unique {
    padding: 8vh 4vw;
    width: 100%;
  }

  .container-trusted {
    max-width: 100%;
    margin: 0 auto;
  }

  .trusted-title {
    font-size: 7vw;
    margin-bottom: 5vh;
  }

  /* Slider container without wrapping */
  .slider-container {
    display: flex;
    gap: 5vw;
    padding: 5vw;
    width: 100%;
    scrollbar-width: none; /* Hide scrollbar in Firefox */
  }

  /* Hide scrollbar for WebKit browsers (Chrome, Safari, Edge) */
  .slider-container::-webkit-scrollbar {
    display: none;
  }

  /* Slider items */
  .slider-item {
    display: inline-block; /* Ensure items stay in a single line */
    width: 40vw; /* Adjust width to fit more items in a single line */
    padding: 5vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
    flex-shrink: 0; /* Prevent items from shrinking */
  }

  /* Image inside each slider item */
  .slider-item img.img-fluid-trusted {
    width: 100%;
    height: auto;
    border-radius: 2vw; /* Optional rounding for images */
    object-fit: contain; /* Ensure full logo visibility without cropping */
  }

  /* Username styling */
  .trusted-username {
    font-size: 4vw;
    padding: 3vh;
    border-radius: 2vw;
    text-align: center;
  }
}

@media (min-width: 576px) and (max-width: 600px) {
  /* General Adjustments */
  body {
    text-align: left;
    width: 100%;
  }

  .hero-section-unique {
    background-image: url("/images/backgrounds/linxhub-image-background.svg");
    background-color: #c0ade1;
    background-size: cover;
    background-position: right center;
    padding-top: 22.08vh; /* 40px */
    margin-top: -20vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    height: 160%;
  }

  .container-hero,
  .row-hero {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding-top: 49vh;
  }

  .text-content-hero {
    width: 100%;
    text-align: left;
    margin-top: -2.5%;
    margin-left: -4vw;
  }

  .hero-heading {
    font-size: 10.5vw;
    padding-top: -1vh;
    width: 110%;
    text-align: left;
  }

  .hero-links-text,
  .domain-box-hero {
    font-size: 7.7vw;
    text-align: left;
    width: 100%;
    margin-top: -1.5vh;
  }

  /* Parent container for prefix, input, and button */
  /* Parent container for the input group */
  .input-group-hero {
    display: flex;
    flex-direction: column; /* Stack the input row and button vertically */
    align-items: center;
    width: 100%;
    margin-bottom: 2vh;
  }

  /* Container for prefix and input field */
  .input-group-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%; /* Adjust the width as needed */
    margin-bottom: 2vh;
    gap: 0;
  }

  /* Prefix text styling */
  .input-group-text-hero {
    font-size: 5.5vw;
    padding: 2.5vh;
    border-radius: 2vw 0 0 2vw;
    text-align: center;
    flex-shrink: 0; /* Prevent shrinking */
  }

  /* Input field styling */
  .username-input-field {
    font-size: 5.5vw;
    padding: 2.5vh;
    border-radius: 0 2vw 2vw 0;
    padding-left: 1.5vw;
    flex-grow: 1; /* Allow input to take remaining space */
    border-left: none; /* Remove border between prefix and input */
    width: 60%;
  }

  /* Button container */
  .input-group-append-hero {
    width: 80%;
    display: flex;
    justify-content: center;
    margin-top: 2vh;
  }

  /* Button styling */
  .create-link-btn-hero {
    font-size: 5.5vw;
    padding: 2.5vh;
    width: 100%;
    border-radius: 5vw;
  }

  .create-link-btn-hero:hover {
    background-color: #75eeec;
  }

  .create-link-btn-hero:hover {
    background-color: #75eeec;
  }

  /* Error Message Styling */
  .text-danger-hero {
    color: #dc3545;
    font-size: 4vw;
    margin-top: 1vh;
  }

  /* Image Content */
  .image-content-hero {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 2vh;
  }

  /* Mobile-Only Hero Section */
  .hero-section-unique-mobile {
    background-image: url("/images/backgrounds/1080_1920.svg");
    background-color: #c0ade1; /* Color appears behind the SVG */
    background-repeat: no-repeat;
    background-position: center Top; /* Center the SVG horizontally, align it to the top */
    padding-top: 4vh;
    margin-top: -10vh;
    display: flex;
    height: 140vh;
    align-items: center;
    justify-content: center;
    margin-bottom: -12.8vh;
  }

  /* Templates Section */
  .templates-section-unique,
  .container-templates,
  .row-templates {
    flex-direction: column;
    align-items: center;
    padding: 1.5vh 0;
    width: 100%;
    overflow: hidden;
  }

  .image-content-templates {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .text-content-templates {
    width: 100%;
    padding: 2vw;
    text-align: left;
  }

  .text-content-templates h2.template-heading {
    font-size: 7vw;
  }

  .text-content-templates p.template-description {
    font-size: 4.5vw;
    padding-left: 0.5vw;
    line-height: 1.6;
  }

  .create-link-btn-templates {
    font-size: 5.5vw;
    padding: 2.5vh;
    width: 70%;
    border-radius: 5vw;
    margin-left: 15vw;
  }

  /* Features Section */
  .features-section-unique {
    padding: 8vh 4vw;
  }

  .section-title-features {
    font-size: 8vw;
    margin-bottom: 4vh;
  }

  .feature-boxes-container {
    grid-template-columns: 1fr;
    gap: 5vw;
    max-width: 90vw;
    margin: 0 auto;
  }

  .feature-box-item {
    padding: 6vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
  }

  .feature-box-item p {
    font-size: 5.5vw;
  }

  .heart-icon {
    width: 12vw;
    height: 12vw;
    margin-bottom: 3vh;
  }

  /* How it Works Section */
  .how-it-works-section-unique {
    padding: 8vh 4vw;
    width: 100%;
  }
  .step-number-circle {
    font-size: 4vw;
  }

  .container-how-it-works {
    max-width: 100%;
    margin: 0 auto;
  }

  .how-it-works-heading {
    font-size: 10vw;
    margin-bottom: 4vh;
  }

  .row-how-it-works {
    display: flex;
    flex-direction: column;
    gap: 5vw;
  }

  .step-box {
    padding: 6vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
    width: 100%;
  }

  .step-title {
    font-size: 7vw;
  }

  .step-description {
    font-size: 4.5vw;
    line-height: 1.6;
    padding-left: 0.5vw;
  }

  /* Make the step number circle larger and more prominent */
  .step-number-circle {
    font-size: 8vw; /* Increase the size of the number */
    background-color: #0b2a44; /* Add a background color */
    color: white;
    width: 10vw; /* Adjust the size of the circle */
    height: 10vw;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4vh; /* Add spacing below the circle */
    box-shadow: 0 1vw 2vw rgba(0, 0, 0, 0.1);
  }

  /* Trusted Section */
  .trusted-section-unique {
    padding: 8vh 4vw;
    width: 100%;
  }

  .container-trusted {
    max-width: 100%;
    margin: 0 auto;
  }

  .trusted-title {
    font-size: 7vw;
    margin-bottom: 5vh;
  }

  /* Slider container without wrapping */
  .slider-container {
    display: flex;
    gap: 5vw;
    padding: 5vw;
    width: 100%;
    scrollbar-width: none; /* Hide scrollbar in Firefox */
  }

  /* Hide scrollbar for WebKit browsers (Chrome, Safari, Edge) */
  .slider-container::-webkit-scrollbar {
    display: none;
  }

  /* Slider items */
  .slider-item {
    display: inline-block; /* Ensure items stay in a single line */
    width: 40vw; /* Adjust width to fit more items in a single line */
    padding: 5vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
    flex-shrink: 0; /* Prevent items from shrinking */
  }

  /* Image inside each slider item */
  .slider-item img.img-fluid-trusted {
    width: 100%;
    height: auto;
    border-radius: 2vw; /* Optional rounding for images */
    object-fit: contain; /* Ensure full logo visibility without cropping */
  }

  /* Username styling */
  .trusted-username {
    font-size: 4vw;
    padding: 3vh;
    border-radius: 2vw;
    text-align: center;
  }
}

@media (min-width: 601px) and (max-width: 670px) {
  /* General Adjustments */
  body {
    text-align: left;
    width: 100%;
  }

  .hero-section-unique {
    background-image: url("/images/backgrounds/linxhub-image-background.svg");
    background-color: #c0ade1;
    background-size: cover;
    background-position: right center;
    padding-top: 22.08vh; /* 40px */
    margin-top: -20vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    height: 160%;
  }

  .container-hero,
  .row-hero {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding-top: 58vh;
  }

  .text-content-hero {
    width: 100%;
    text-align: left;
    margin-top: -2.5%;
    margin-left: -4vw;
  }

  .hero-heading {
    font-size: 10.5vw;
    padding-top: -1vh;
    width: 110%;
    text-align: left;
  }

  .hero-links-text,
  .domain-box-hero {
    font-size: 7.7vw;
    text-align: left;
    width: 100%;
    margin-top: -1.5vh;
  }

  /* Parent container for prefix, input, and button */
  /* Parent container for the input group */
  .input-group-hero {
    display: flex;
    flex-direction: column; /* Stack the input row and button vertically */
    align-items: center;
    width: 100%;
    margin-bottom: 2vh;
  }

  /* Container for prefix and input field */
  .input-group-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%; /* Adjust the width as needed */
    margin-bottom: 2vh;
    gap: 0;
  }

  /* Prefix text styling */
  .input-group-text-hero {
    font-size: 5.5vw;
    padding: 2.5vh;
    border-radius: 2vw 0 0 2vw;
    text-align: center;
    flex-shrink: 0; /* Prevent shrinking */
  }

  /* Input field styling */
  .username-input-field {
    font-size: 5.5vw;
    padding: 2.5vh;
    border-radius: 0 2vw 2vw 0;
    padding-left: 1.5vw;
    flex-grow: 1; /* Allow input to take remaining space */
    border-left: none; /* Remove border between prefix and input */
    width: 60%;
    margin-top: 0vw;
    margin-left: -0.5vw;
  }

  /* Button container */
  .input-group-append-hero {
    width: 80%;
    display: flex;
    justify-content: center;
    margin-top: 2vh;
  }

  /* Button styling */
  .create-link-btn-hero {
    font-size: 5.5vw;
    padding: 2.5vh;
    width: 100%;
    border-radius: 5vw;
  }

  .create-link-btn-hero:hover {
    background-color: #75eeec;
  }

  .create-link-btn-hero:hover {
    background-color: #75eeec;
  }

  /* Error Message Styling */
  .text-danger-hero {
    color: #dc3545;
    font-size: 4vw;
    margin-top: 1vh;
  }

  /* Image Content */
  .image-content-hero {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 2vh;
  }

  /* Mobile-Only Hero Section */
  .hero-section-unique-mobile {
    background-image: url("/images/backgrounds/1080_1920.svg");
    background-color: #c0ade1; /* Color appears behind the SVG */
    background-repeat: no-repeat;
    background-position: center Top; /* Center the SVG horizontally, align it to the top */
    padding-top: 4vh;
    margin-top: -10vh;
    display: flex;
    height: 140vh;
    align-items: center;
    justify-content: center;
    margin-bottom: -12.8vh;
  }

  /* Templates Section */
  .templates-section-unique,
  .container-templates,
  .row-templates {
    flex-direction: column;
    align-items: center;
    padding: 1.5vh 0;
    width: 100%;
    overflow: hidden;
  }

  .image-content-templates {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .text-content-templates {
    width: 100%;
    padding: 2vw;
    text-align: left;
  }

  .text-content-templates h2.template-heading {
    font-size: 7vw;
  }

  .text-content-templates p.template-description {
    font-size: 4.5vw;
    padding-left: 0.5vw;
    line-height: 1.6;
  }

  .create-link-btn-templates {
    font-size: 5.5vw;
    padding: 2.5vh;
    width: 70%;
    border-radius: 5vw;
    margin-left: 15vw;
  }

  /* Features Section */
  .features-section-unique {
    padding: 8vh 4vw;
  }

  .section-title-features {
    font-size: 8vw;
    margin-bottom: 4vh;
  }

  .feature-boxes-container {
    grid-template-columns: 1fr;
    gap: 5vw;
    max-width: 90vw;
    margin: 0 auto;
  }

  .feature-box-item {
    padding: 6vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
  }

  .feature-box-item p {
    font-size: 5.5vw;
  }

  .heart-icon {
    width: 12vw;
    height: 12vw;
    margin-bottom: 3vh;
  }

  /* How it Works Section */
  .how-it-works-section-unique {
    padding: 8vh 4vw;
    width: 100%;
  }
  .step-number-circle {
    font-size: 4vw;
  }

  .container-how-it-works {
    max-width: 100%;
    margin: 0 auto;
  }

  .how-it-works-heading {
    font-size: 10vw;
    margin-bottom: 4vh;
  }

  .row-how-it-works {
    display: flex;
    flex-direction: column;
    gap: 5vw;
  }

  .step-box {
    padding: 6vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
    width: 100%;
  }

  .step-title {
    font-size: 7vw;
  }

  .step-description {
    font-size: 4.5vw;
    line-height: 1.6;
    padding-left: 0.5vw;
  }

  /* Make the step number circle larger and more prominent */
  .step-number-circle {
    font-size: 8vw; /* Increase the size of the number */
    background-color: #0b2a44; /* Add a background color */
    color: white;
    width: 10vw; /* Adjust the size of the circle */
    height: 10vw;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4vh; /* Add spacing below the circle */
    box-shadow: 0 1vw 2vw rgba(0, 0, 0, 0.1);
  }

  /* Trusted Section */
  .trusted-section-unique {
    padding: 8vh 4vw;
    width: 100%;
  }

  .container-trusted {
    max-width: 100%;
    margin: 0 auto;
  }

  .trusted-title {
    font-size: 7vw;
    margin-bottom: 5vh;
  }

  /* Slider container without wrapping */
  .slider-container {
    display: flex;
    gap: 5vw;
    padding: 5vw;
    width: 100%;
    scrollbar-width: none; /* Hide scrollbar in Firefox */
  }

  /* Hide scrollbar for WebKit browsers (Chrome, Safari, Edge) */
  .slider-container::-webkit-scrollbar {
    display: none;
  }

  /* Slider items */
  .slider-item {
    display: inline-block; /* Ensure items stay in a single line */
    width: 40vw; /* Adjust width to fit more items in a single line */
    padding: 5vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
    flex-shrink: 0; /* Prevent items from shrinking */
  }

  /* Image inside each slider item */
  .slider-item img.img-fluid-trusted {
    width: 100%;
    height: auto;
    border-radius: 2vw; /* Optional rounding for images */
    object-fit: contain; /* Ensure full logo visibility without cropping */
  }

  /* Username styling */
  .trusted-username {
    font-size: 4vw;
    padding: 3vh;
    border-radius: 2vw;
    text-align: center;
  }
}

@media (min-width: 671px) and (max-width: 730px) {
  /* General Adjustments */
  body {
    text-align: left;
    width: 100%;
  }

  .hero-section-unique {
    background-image: url("/images/backgrounds/linxhub-image-background.svg");
    background-color: #c0ade1;
    background-size: cover;
    background-position: right center;
    padding-top: 40.08vh; /* 40px */
    margin-top: -20vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    height: 160%;
  }

  .container-hero,
  .row-hero {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding-top: 62vh;
  }

  .text-content-hero {
    width: 100%;
    text-align: left;
    margin-top: -2.5%;
    margin-left: -4vw;
  }

  .hero-heading {
    font-size: 10.5vw;
    padding-top: -1vh;
    width: 110%;
    text-align: left;
  }

  .hero-links-text,
  .domain-box-hero {
    font-size: 7.7vw;
    text-align: left;
    width: 100%;
    margin-top: -1.5vh;
  }

  /* Parent container for prefix, input, and button */
  /* Parent container for the input group */
  .input-group-hero {
    display: flex;
    flex-direction: column; /* Stack the input row and button vertically */
    align-items: center;
    width: 100%;
    margin-bottom: 2vh;
  }

  /* Container for prefix and input field */
  .input-group-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%; /* Adjust the width as needed */
    margin-bottom: 2vh;
    gap: 0;
  }

  /* Prefix text styling */
  .input-group-text-hero {
    font-size: 5.5vw;
    padding: 2.5vh;
    border-radius: 2vw 0 0 2vw;
    text-align: center;
    flex-shrink: 0; /* Prevent shrinking */
  }

  /* Input field styling */
  .username-input-field {
    font-size: 5.5vw;
    padding: 2.5vh;
    border-radius: 0 2vw 2vw 0;
    padding-left: 1.5vw;
    flex-grow: 1; /* Allow input to take remaining space */
    border-left: none; /* Remove border between prefix and input */
    width: 60%;
    margin-top: 0vw;
  }

  /* Button container */
  .input-group-append-hero {
    width: 80%;
    display: flex;
    justify-content: center;
    margin-top: 2vh;
  }

  /* Button styling */
  .create-link-btn-hero {
    font-size: 5.5vw;
    padding: 2.5vh;
    width: 100%;
    border-radius: 5vw;
  }

  .create-link-btn-hero:hover {
    background-color: #75eeec;
  }

  .create-link-btn-hero:hover {
    background-color: #75eeec;
  }

  /* Error Message Styling */
  .text-danger-hero {
    color: #dc3545;
    font-size: 4vw;
    margin-top: 1vh;
  }

  /* Image Content */
  .image-content-hero {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 2vh;
  }

  /* Mobile-Only Hero Section */
  .hero-section-unique-mobile {
    background-image: url("/images/backgrounds/1080_1920.svg");
    background-color: #c0ade1; /* Color appears behind the SVG */
    background-repeat: no-repeat;
    background-position: center Top; /* Center the SVG horizontally, align it to the top */
    padding-top: 4vh;
    margin-top: -10vh;
    display: flex;
    height: 140vh;
    align-items: center;
    justify-content: center;
    margin-bottom: -12.8vh;
  }

  /* Templates Section */
  .templates-section-unique,
  .container-templates,
  .row-templates {
    flex-direction: column;
    align-items: center;
    padding: 1.5vh 0;
    width: 100%;
    overflow: hidden;
  }

  .image-content-templates {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .text-content-templates {
    width: 100%;
    padding: 2vw;
    text-align: left;
  }

  .text-content-templates h2.template-heading {
    font-size: 7vw;
  }

  .text-content-templates p.template-description {
    font-size: 4.5vw;
    padding-left: 0.5vw;
    line-height: 1.6;
  }

  .create-link-btn-templates {
    font-size: 5.5vw;
    padding: 2.5vh;
    width: 70%;
    border-radius: 5vw;
    margin-left: 15vw;
  }

  /* Features Section */
  .features-section-unique {
    padding: 8vh 4vw;
  }

  .section-title-features {
    font-size: 8vw;
    margin-bottom: 4vh;
  }

  .feature-boxes-container {
    grid-template-columns: 1fr;
    gap: 5vw;
    max-width: 90vw;
    margin: 0 auto;
  }

  .feature-box-item {
    padding: 6vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
  }

  .feature-box-item p {
    font-size: 5.5vw;
  }

  .heart-icon {
    width: 12vw;
    height: 12vw;
    margin-bottom: 3vh;
  }

  /* How it Works Section */
  .how-it-works-section-unique {
    padding: 8vh 4vw;
    width: 100%;
  }
  .step-number-circle {
    font-size: 4vw;
  }

  .container-how-it-works {
    max-width: 100%;
    margin: 0 auto;
  }

  .how-it-works-heading {
    font-size: 10vw;
    margin-bottom: 4vh;
  }

  .row-how-it-works {
    display: flex;
    flex-direction: column;
    gap: 5vw;
  }

  .step-box {
    padding: 6vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
    width: 100%;
  }

  .step-title {
    font-size: 7vw;
  }

  .step-description {
    font-size: 4.5vw;
    line-height: 1.6;
    padding-left: 0.5vw;
  }

  /* Make the step number circle larger and more prominent */
  .step-number-circle {
    font-size: 8vw; /* Increase the size of the number */
    background-color: #0b2a44; /* Add a background color */
    color: white;
    width: 10vw; /* Adjust the size of the circle */
    height: 10vw;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4vh; /* Add spacing below the circle */
    box-shadow: 0 1vw 2vw rgba(0, 0, 0, 0.1);
  }

  /* Trusted Section */
  .trusted-section-unique {
    padding: 8vh 4vw;
    width: 100%;
  }

  .container-trusted {
    max-width: 100%;
    margin: 0 auto;
  }

  .trusted-title {
    font-size: 7vw;
    margin-bottom: 5vh;
  }

  /* Slider container without wrapping */
  .slider-container {
    display: flex;
    gap: 5vw;
    padding: 5vw;
    width: 100%;
    scrollbar-width: none; /* Hide scrollbar in Firefox */
  }

  /* Hide scrollbar for WebKit browsers (Chrome, Safari, Edge) */
  .slider-container::-webkit-scrollbar {
    display: none;
  }

  /* Slider items */
  .slider-item {
    display: inline-block; /* Ensure items stay in a single line */
    width: 40vw; /* Adjust width to fit more items in a single line */
    padding: 5vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
    flex-shrink: 0; /* Prevent items from shrinking */
  }

  /* Image inside each slider item */
  .slider-item img.img-fluid-trusted {
    width: 100%;
    height: auto;
    border-radius: 2vw; /* Optional rounding for images */
    object-fit: contain; /* Ensure full logo visibility without cropping */
  }

  /* Username styling */
  .trusted-username {
    font-size: 4vw;
    padding: 3vh;
    border-radius: 2vw;
    text-align: center;
  }
}
@media (min-width: 731px) and (max-width: 767px) {
  /* General Adjustments */
  body {
    text-align: left;
    width: 100%;
  }

  .container-hero,
  .row-hero {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .text-content-hero {
    width: 100%;
    text-align: left;
    margin-top: -2.5%;
    margin-left: -4vw;
  }

  .hero-heading {
    font-size: 8.5vw;
    padding-top: -1vh;
    width: 110%;
    text-align: left;
  }

  .hero-links-text,
  .domain-box-hero {
    font-size: 5.7vw;
    text-align: left;
    width: 100%;
    margin-top: -1.5vh;
  }

  /* Parent container for prefix, input, and button */
  /* Parent container for the input group */
  .input-group-hero {
    display: flex;
    flex-direction: column; /* Stack the input row and button vertically */
    align-items: center;
    width: 100%;
    margin-bottom: 2vh;
  }

  /* Container for prefix and input field */
  .input-group-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%; /* Adjust the width as needed */
    margin-bottom: 2vh;
    gap: 0;
  }

  /* Prefix text styling */
  .input-group-text-hero {
    font-size: 3.5vw;
    padding: 2.5vh;
    border-radius: 2vw 0 0 2vw;
    text-align: center;
    flex-shrink: 0; /* Prevent shrinking */
  }

  /* Input field styling */
  .username-input-field {
    font-size: 3.5vw;
    padding: 2.5vh;
    border-radius: 0 2vw 2vw 0;
    padding-left: 1.5vw;
    flex-grow: 1; /* Allow input to take remaining space */
    border-left: none; /* Remove border between prefix and input */
    width: 60%;
  }

  /* Button container */
  .input-group-append-hero {
    width: 80%;
    display: flex;
    justify-content: center;
    margin-top: 2vh;
  }

  /* Button styling */
  .create-link-btn-hero {
    font-size: 3.5vw;
    padding: 2.5vh;
    width: 100%;
    border-radius: 5vw;
  }

  .create-link-btn-hero:hover {
    background-color: #75eeec;
  }

  .create-link-btn-hero:hover {
    background-color: #75eeec;
  }

  /* Error Message Styling */
  .text-danger-hero {
    color: #dc3545;
    font-size: 2vw;
    margin-top: 1vh;
  }

  /* Image Content */
  .image-content-hero {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 2vh;
  }

  /* Mobile-Only Hero Section */
  .hero-section-unique-mobile {
    background-image: url("/images/backgrounds/1080_1920.svg");
    background-color: #c0ade1; /* Color appears behind the SVG */
    background-repeat: no-repeat;
    background-position: center Top; /* Center the SVG horizontally, align it to the top */
    margin-top: -6vh;
    display: flex;
    height: 313vh;
    align-items: center;
    justify-content: center;
    margin-bottom: -12.8vh;
    padding-top: 5vh;
  }

  /* Templates Section */
  .templates-section-unique,
  .container-templates,
  .row-templates {
    flex-direction: column;
    align-items: center;
    padding: 1.5vh 0;
    width: 100%;
    overflow: hidden;
  }

  .image-content-templates {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .text-content-templates {
    width: 100%;
    padding: 2vw;
    text-align: left;
  }

  .text-content-templates h2.template-heading {
    font-size: 5vw;
  }

  .text-content-templates p.template-description {
    font-size: 2.5vw;
    padding-left: 0.5vw;
    line-height: 1.6;
  }

  .create-link-btn-templates {
    font-size: 3.5vw;
    padding: 2.5vh;
    width: 70%;
    border-radius: 5vw;
    margin-left: 15vw;
  }

  /* Features Section */
  .features-section-unique {
    padding: 8vh 4vw;
  }

  .section-title-features {
    font-size: 6vw;
    margin-bottom: 4vh;
  }

  .feature-boxes-container {
    grid-template-columns: 1fr;
    gap: 5vw;
    max-width: 90vw;
    margin: 0 auto;
  }

  .feature-box-item {
    padding: 6vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
  }

  .feature-box-item p {
    font-size: 3.5vw;
  }

  .heart-icon {
    width: 12vw;
    height: 12vw;
    margin-bottom: 3vh;
  }

  /* How it Works Section */
  .how-it-works-section-unique {
    padding: 8vh 4vw;
    width: 100%;
  }
  .step-number-circle {
    font-size: 2vw;
  }

  .container-how-it-works {
    max-width: 100%;
    margin: 0 auto;
  }

  .how-it-works-heading {
    font-size: 8vw;
    margin-bottom: 4vh;
  }

  .row-how-it-works {
    display: flex;
    flex-direction: column;
    gap: 5vw;
  }

  .step-box {
    padding: 6vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
    width: 100%;
  }

  .step-title {
    font-size: 5vw;
  }

  .step-description {
    font-size: 2.5vw;
    line-height: 1.6;
    padding-left: 0.5vw;
  }

  /* Make the step number circle larger and more prominent */
  .step-number-circle {
    font-size: 6vw; /* Increase the size of the number */
    background-color: #0b2a44; /* Add a background color */
    color: white;
    width: 10vw; /* Adjust the size of the circle */
    height: 10vw;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4vh; /* Add spacing below the circle */
    box-shadow: 0 1vw 2vw rgba(0, 0, 0, 0.1);
  }

  /* Trusted Section */
  .trusted-section-unique {
    padding: 8vh 4vw;
    width: 100%;
  }

  .container-trusted {
    max-width: 100%;
    margin: 0 auto;
  }

  .trusted-title {
    font-size: 5vw;
    margin-bottom: 5vh;
  }

  /* Slider container without wrapping */
  .slider-container {
    display: flex;
    gap: 5vw;
    padding: 5vw;
    width: 100%;
    scrollbar-width: none; /* Hide scrollbar in Firefox */
  }

  /* Hide scrollbar for WebKit browsers (Chrome, Safari, Edge) */
  .slider-container::-webkit-scrollbar {
    display: none;
  }

  /* Slider items */
  .slider-item {
    display: inline-block; /* Ensure items stay in a single line */
    width: 20vw; /* Adjust width to fit more items in a single line */
    padding: 5vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
    flex-shrink: 0; /* Prevent items from shrinking */
  }

  /* Image inside each slider item */
  .slider-item img.img-fluid-trusted {
    width: 100%;
    height: auto;
    border-radius: 2vw; /* Optional rounding for images */
    object-fit: contain; /* Ensure full logo visibility without cropping */
  }

  /* Username styling */
  .trusted-username {
    font-size: 2vw;
    padding: 3vh;
    border-radius: 2vw;
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 780px) {
  /* General Adjustments */
  body {
    text-align: left;
    width: 100%;
  }

  .hero-section-unique {
    background-image: url("/images/backgrounds/linxhub-image-background.svg");
    background-color: #c0ade1;
    background-size: cover;
    background-position: right center;
    padding-top: 22.08vh; /* 40px */
    margin-top: -20vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    height: 160%;
  }

  .container-hero,
  .row-hero {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .text-content-hero {
    width: 100%;
    text-align: left;
    margin-top: 5.5%;
    margin-left: -4vw;
  }

  .hero-heading {
    font-size: 9.5vw;
    padding-top: -1vh;
    width: 110%;
    text-align: left;
  }

  .hero-links-text,
  .domain-box-hero {
    font-size: 7.7vw;
    text-align: left;
    width: 100%;
    margin-top: -1.5vh;
  }

  /* Parent container for prefix, input, and button */
  /* Parent container for the input group */
  .input-group-hero {
    display: flex;
    flex-direction: column; /* Stack the input row and button vertically */
    align-items: center;
    width: 100%;
    margin-bottom: 2vh;
  }

  /* Container for prefix and input field */
  .input-group-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%; /* Adjust the width as needed */
    margin-bottom: 2vh;
    gap: 0;
  }

  /* Prefix text styling */
  .input-group-text-hero {
    font-size: 5.5vw;
    padding: 2.5vh;
    border-radius: 2vw 0 0 2vw;
    text-align: center;
    flex-shrink: 0; /* Prevent shrinking */
    margin-right: 40vw;
  }

  /* Input field styling */
  .username-input-field {
    font-size: 5.5vw;
    padding: 2.5vh;
    border-radius: 0 2vw 2vw 0;
    padding-left: 1.5vw;
    flex-grow: 1; /* Allow input to take remaining space */
    border-left: none; /* Remove border between prefix and input */
    width: 60%;
    margin-left: 36vw;
    margin-top: -11.75vh;
  }

  /* Button container */
  .input-group-append-hero {
    width: 80%;
    display: flex;
    justify-content: center;
    margin-top: 2vh;
  }

  /* Button styling */
  .create-link-btn-hero {
    font-size: 5.5vw;
    padding: 2.5vh;
    width: 100%;
    border-radius: 5vw;
  }

  .create-link-btn-hero:hover {
    background-color: #75eeec;
  }

  .create-link-btn-hero:hover {
    background-color: #75eeec;
  }

  /* Error Message Styling */
  .text-danger-hero {
    color: #dc3545;
    font-size: 4vw;
    margin-top: 1vh;
  }

  /* Image Content */
  .image-content-hero {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 2vh;
  }

  /* Mobile-Only Hero Section */
  .hero-section-unique-mobile {
    background-image: url("/images/backgrounds/1080_1920.svg");
    background-color: #c0ade1; /* Color appears behind the SVG */
    background-repeat: no-repeat;
    background-position: center Top; /* Center the SVG horizontally, align it to the top */
    padding-top: 4vh;
    margin-top: -10vh;
    display: flex;
    height: 140vh;
    align-items: center;
    justify-content: center;
    margin-bottom: -12.8vh;
  }

  /* Templates Section */
  .templates-section-unique,
  .container-templates,
  .row-templates {
    flex-direction: column;
    align-items: center;
    padding: 1.5vh 0;
    width: 100%;
    overflow: hidden;
  }

  .image-content-templates {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .text-content-templates {
    width: 100%;
    padding: 2vw;
    text-align: left;
  }

  .text-content-templates h2.template-heading {
    font-size: 5vw;
  }

  .text-content-templates p.template-description {
    font-size: 3vw;
    padding-left: 0.5vw;
    line-height: 1.6;
  }

  .create-link-btn-templates {
    font-size: 5.5vw;
    padding: 2.5vh;
    width: 70%;
    border-radius: 5vw;
    margin-left: 15vw;
  }

  /* Features Section */
  .features-section-unique {
    padding: 8vh 4vw;
  }

  .section-title-features {
    font-size: 5vw;
    margin-bottom: 4vh;
    font-weight: bold;
  }

  .feature-boxes-container {
    grid-template-columns: 1fr;
    gap: 5vw;
    max-width: 90vw;
    margin: 0 auto;
  }

  .feature-box-item {
    padding: 6vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
  }

  .feature-box-item p {
    font-size: 3vw;
  }

  .heart-icon {
    width: 10vw;
    height: 10vw;
    margin-bottom: 3vh;
  }

  /* How it Works Section */
  .how-it-works-section-unique {
    padding: 8vh 4vw;
    width: 100%;
  }
  .step-number-circle {
    font-size: 2vw;
  }

  .container-how-it-works {
    max-width: 100%;
    margin: 0 auto;
  }

  .how-it-works-heading {
    font-size: 5vw;
    font-weight: bold;
    margin-bottom: 4vh;
  }

  .row-how-it-works {
    display: flex;
    flex-direction: column;
    gap: 5vw;
  }

  .step-box {
    padding: 6vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
    width: 100%;
  }

  .step-title {
    font-size: 5vw;
  }

  .step-description {
    font-size: 3vw;
    line-height: 1.6;
    padding-left: 0.5vw;
  }

  /* Make the step number circle larger and more prominent */
  .step-number-circle {
    font-size: 5vw; /* Increase the size of the number */
    background-color: #0b2a44; /* Add a background color */
    color: white;
    width: 8vw; /* Adjust the size of the circle */
    height: 8vw;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4vh; /* Add spacing below the circle */
    box-shadow: 0 1vw 2vw rgba(0, 0, 0, 0.1);
  }

  /* Trusted Section */
  .trusted-section-unique {
    padding: 8vh 4vw;
    width: 100%;
  }

  .container-trusted {
    max-width: 100%;
    margin: 0 auto;
  }

  .trusted-title {
    font-size: 5vw;
    margin-bottom: 5vh;
    font-weight: bold;
  }

  /* Slider container without wrapping */
  .slider-container {
    display: flex;
    gap: 5vw;
    padding: 5vw;
    width: 100%;
    scrollbar-width: none; /* Hide scrollbar in Firefox */
  }

  /* Hide scrollbar for WebKit browsers (Chrome, Safari, Edge) */
  .slider-container::-webkit-scrollbar {
    display: none;
  }

  /* Slider items */
  .slider-item {
    display: inline-block; /* Ensure items stay in a single line */
    width: 25vw; /* Adjust width to fit more items in a single line */
    padding: 2vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
    flex-shrink: 0; /* Prevent items from shrinking */
  }

  /* Image inside each slider item */
  .slider-item img.img-fluid-trusted {
    width: 100%;
    height: auto;
    border-radius: 2vw; /* Optional rounding for images */
    object-fit: contain; /* Ensure full logo visibility without cropping */
  }

  /* Username styling */
  .trusted-username {
    font-size: 4vw;
    padding: 3vh;
    border-radius: 2vw;
    text-align: center;
  }
}

@media (min-width: 781px) and (max-width: 792px) {
  /* General Adjustments */
  body {
    text-align: left;
    width: 100%;
  }

  .hero-section-unique {
    background-image: url("/images/backgrounds/linxhub-image-background.svg");
    background-color: #c0ade1;
    background-size: cover;
    background-position: right center;
    padding-top: 22.08vh; /* 40px */
    margin-top: -20vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    height: 160%;
  }

  .container-hero,
  .row-hero {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .text-content-hero {
    width: 100%;
    text-align: left;
    margin-top: -2.5%;
    margin-left: -4vw;
  }

  .hero-heading {
    font-size: 9.5vw;
    padding-top: -1vh;
    width: 110%;
    text-align: left;
  }

  .hero-links-text,
  .domain-box-hero {
    font-size: 7.7vw;
    text-align: left;
    width: 100%;
    margin-top: -1.5vh;
  }

  /* Parent container for prefix, input, and button */
  /* Parent container for the input group */
  .input-group-hero {
    display: flex;
    flex-direction: column; /* Stack the input row and button vertically */
    align-items: center;
    width: 100%;
    margin-bottom: 2vh;
  }

  /* Container for prefix and input field */
  .input-group-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%; /* Adjust the width as needed */
    margin-bottom: 2vh;
    gap: 0;
  }

  /* Prefix text styling */
  .input-group-text-hero {
    font-size: 5.5vw;
    padding: 2.5vh;
    border-radius: 2vw 0 0 2vw;
    text-align: center;
    flex-shrink: 0; /* Prevent shrinking */
    margin-right: 40vw;
  }

  /* Input field styling */
  .username-input-field {
    font-size: 5.5vw;
    padding: 2.5vh;
    border-radius: 0 2vw 2vw 0;
    padding-left: 1.5vw;
    flex-grow: 1; /* Allow input to take remaining space */
    border-left: none; /* Remove border between prefix and input */
    width: 60%;
    margin-left: 34vw;
    margin-top: -19.2vh;
  }

  /* Button container */
  .input-group-append-hero {
    width: 80%;
    display: flex;
    justify-content: center;
    margin-top: 2vh;
  }

  /* Button styling */
  .create-link-btn-hero {
    font-size: 5.5vw;
    padding: 2.5vh;
    width: 100%;
    border-radius: 5vw;
  }

  .create-link-btn-hero:hover {
    background-color: #75eeec;
  }

  .create-link-btn-hero:hover {
    background-color: #75eeec;
  }

  /* Error Message Styling */
  .text-danger-hero {
    color: #dc3545;
    font-size: 4vw;
    margin-top: 1vh;
  }

  /* Image Content */
  .image-content-hero {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 2vh;
  }

  /* Mobile-Only Hero Section */
  .hero-section-unique-mobile {
    background-image: url("/images/backgrounds/1080_1920.svg");
    background-color: #c0ade1; /* Color appears behind the SVG */
    background-repeat: no-repeat;
    background-position: center Top; /* Center the SVG horizontally, align it to the top */
    padding-top: 4vh;
    margin-top: -10vh;
    display: flex;
    height: 140vh;
    align-items: center;
    justify-content: center;
    margin-bottom: -12.8vh;
  }

  /* Templates Section */
  .templates-section-unique,
  .container-templates,
  .row-templates {
    flex-direction: column;
    align-items: center;
    padding: 1.5vh 0;
    width: 100%;
    overflow: hidden;
  }

  .image-content-templates {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .text-content-templates {
    width: 100%;
    padding: 2vw;
    text-align: left;
  }

  .text-content-templates h2.template-heading {
    font-size: 5vw;
  }

  .text-content-templates p.template-description {
    font-size: 3vw;
    padding-left: 0.5vw;
    line-height: 1.6;
  }

  .create-link-btn-templates {
    font-size: 5.5vw;
    padding: 2.5vh;
    width: 70%;
    border-radius: 5vw;
    margin-left: 15vw;
  }

  /* Features Section */
  .features-section-unique {
    padding: 8vh 4vw;
  }

  .section-title-features {
    font-size: 5vw;
    margin-bottom: 4vh;
    font-weight: bold;
  }

  .feature-boxes-container {
    grid-template-columns: 1fr;
    gap: 5vw;
    max-width: 90vw;
    margin: 0 auto;
  }

  .feature-box-item {
    padding: 6vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
  }

  .feature-box-item p {
    font-size: 3vw;
  }

  .heart-icon {
    width: 10vw;
    height: 10vw;
    margin-bottom: 3vh;
  }

  /* How it Works Section */
  .how-it-works-section-unique {
    padding: 8vh 4vw;
    width: 100%;
  }
  .step-number-circle {
    font-size: 2vw;
  }

  .container-how-it-works {
    max-width: 100%;
    margin: 0 auto;
  }

  .how-it-works-heading {
    font-size: 5vw;
    font-weight: bold;
    margin-bottom: 4vh;
  }

  .row-how-it-works {
    display: flex;
    flex-direction: column;
    gap: 5vw;
  }

  .step-box {
    padding: 6vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
    width: 100%;
  }

  .step-title {
    font-size: 5vw;
  }

  .step-description {
    font-size: 3vw;
    line-height: 1.6;
    padding-left: 0.5vw;
  }

  /* Make the step number circle larger and more prominent */
  .step-number-circle {
    font-size: 5vw; /* Increase the size of the number */
    background-color: #0b2a44; /* Add a background color */
    color: white;
    width: 8vw; /* Adjust the size of the circle */
    height: 8vw;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4vh; /* Add spacing below the circle */
    box-shadow: 0 1vw 2vw rgba(0, 0, 0, 0.1);
  }

  /* Trusted Section */
  .trusted-section-unique {
    padding: 8vh 4vw;
    width: 100%;
  }

  .container-trusted {
    max-width: 100%;
    margin: 0 auto;
  }

  .trusted-title {
    font-size: 5vw;
    margin-bottom: 5vh;
    font-weight: bold;
  }

  /* Slider container without wrapping */
  .slider-container {
    display: flex;
    gap: 5vw;
    padding: 5vw;
    width: 100%;
    scrollbar-width: none; /* Hide scrollbar in Firefox */
  }

  /* Hide scrollbar for WebKit browsers (Chrome, Safari, Edge) */
  .slider-container::-webkit-scrollbar {
    display: none;
  }

  /* Slider items */
  .slider-item {
    display: inline-block; /* Ensure items stay in a single line */
    width: 25vw; /* Adjust width to fit more items in a single line */
    padding: 2vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
    flex-shrink: 0; /* Prevent items from shrinking */
  }

  /* Image inside each slider item */
  .slider-item img.img-fluid-trusted {
    width: 100%;
    height: auto;
    border-radius: 2vw; /* Optional rounding for images */
    object-fit: contain; /* Ensure full logo visibility without cropping */
  }

  /* Username styling */
  .trusted-username {
    font-size: 4vw;
    padding: 3vh;
    border-radius: 2vw;
    text-align: center;
  }
}

@media (min-width: 793px) and (max-width: 830px) {
  /* General Adjustments */
  body {
    text-align: left;
    width: 100%;
  }

  .hero-section-unique {
    background-image: url("/images/backgrounds/linxhub-image-background.svg");
    background-color: #c0ade1;
    background-size: cover;
    background-position: right center;
    padding-top: 22.08vh; /* 40px */
    margin-top: -20vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    height: 160%;
  }

  .container-hero,
  .row-hero {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .text-content-hero {
    width: 100%;
    text-align: left;
    margin-top: -2.5%;
    margin-left: -4vw;
  }

  .hero-heading {
    font-size: 9.5vw;
    padding-top: 5vh;
    width: 110%;
    text-align: left;
  }

  .hero-links-text,
  .domain-box-hero {
    font-size: 7.7vw;
    text-align: left;
    width: 100%;
    margin-top: -1.5vh;
  }

  /* Parent container for prefix, input, and button */
  /* Parent container for the input group */
  .input-group-hero {
    display: flex;
    flex-direction: column; /* Stack the input row and button vertically */
    align-items: center;
    width: 100%;
    margin-bottom: 2vh;
  }

  /* Container for prefix and input field */
  .input-group-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%; /* Adjust the width as needed */
    margin-bottom: 2vh;
    gap: 0;
  }

  /* Prefix text styling */
  .input-group-text-hero {
    font-size: 5.5vw;
    padding: 2.5vh;
    border-radius: 2vw 0 0 2vw;
    text-align: center;
    flex-shrink: 0; /* Prevent shrinking */
    margin-right: 40vw;
  }

  /* Input field styling */
  .username-input-field {
    font-size: 5.5vw;
    padding: 2.5vh;
    border-radius: 0 2vw 2vw 0;
    padding-left: 1.5vw;
    flex-grow: 1; /* Allow input to take remaining space */
    border-left: none; /* Remove border between prefix and input */
    width: 60%;
    margin-left: 34vw;
    margin-top: -11.276vh;
  }

  /* Button container */
  .input-group-append-hero {
    width: 80%;
    display: flex;
    justify-content: center;
    margin-top: 2vh;
  }

  /* Button styling */
  .create-link-btn-hero {
    font-size: 5.5vw;
    padding: 2.5vh;
    width: 100%;
    border-radius: 5vw;
  }

  .create-link-btn-hero:hover {
    background-color: #75eeec;
  }

  .create-link-btn-hero:hover {
    background-color: #75eeec;
  }

  /* Error Message Styling */
  .text-danger-hero {
    color: #dc3545;
    font-size: 4vw;
    margin-top: 1vh;
  }

  /* Image Content */
  .image-content-hero {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 2vh;
  }

  /* Mobile-Only Hero Section */
  .hero-section-unique-mobile {
    background-image: url("/images/backgrounds/1080_1920.svg");
    background-color: #c0ade1; /* Color appears behind the SVG */
    background-repeat: no-repeat;
    background-position: center Top; /* Center the SVG horizontally, align it to the top */
    padding-top: 4vh;
    margin-top: -10vh;
    display: flex;
    height: 140vh;
    align-items: center;
    justify-content: center;
    margin-bottom: -12.8vh;
  }

  /* Templates Section */
  .templates-section-unique,
  .container-templates,
  .row-templates {
    flex-direction: column;
    align-items: center;
    padding: 1.5vh 0;
    width: 100%;
    overflow: hidden;
  }

  .image-content-templates {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .text-content-templates {
    width: 100%;
    padding: 2vw;
    text-align: left;
  }

  .text-content-templates h2.template-heading {
    font-size: 5vw;
  }

  .text-content-templates p.template-description {
    font-size: 3vw;
    padding-left: 0.5vw;
    line-height: 1.6;
  }

  .create-link-btn-templates {
    font-size: 5.5vw;
    padding: 2.5vh;
    width: 70%;
    border-radius: 5vw;
    margin-left: 15vw;
  }

  /* Features Section */
  .features-section-unique {
    padding: 8vh 4vw;
  }

  .section-title-features {
    font-size: 5vw;
    margin-bottom: 4vh;
    font-weight: bold;
  }

  .feature-boxes-container {
    grid-template-columns: 1fr;
    gap: 5vw;
    max-width: 90vw;
    margin: 0 auto;
  }

  .feature-box-item {
    padding: 6vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
  }

  .feature-box-item p {
    font-size: 3vw;
  }

  .heart-icon {
    width: 10vw;
    height: 10vw;
    margin-bottom: 3vh;
  }

  /* How it Works Section */
  .how-it-works-section-unique {
    padding: 8vh 4vw;
    width: 100%;
  }
  .step-number-circle {
    font-size: 2vw;
  }

  .container-how-it-works {
    max-width: 100%;
    margin: 0 auto;
  }

  .how-it-works-heading {
    font-size: 5vw;
    font-weight: bold;
    margin-bottom: 4vh;
  }

  .row-how-it-works {
    display: flex;
    flex-direction: column;
    gap: 5vw;
  }

  .step-box {
    padding: 6vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
    width: 100%;
  }

  .step-title {
    font-size: 5vw;
  }

  .step-description {
    font-size: 3vw;
    line-height: 1.6;
    padding-left: 0.5vw;
  }

  /* Make the step number circle larger and more prominent */
  .step-number-circle {
    font-size: 5vw; /* Increase the size of the number */
    background-color: #0b2a44; /* Add a background color */
    color: white;
    width: 8vw; /* Adjust the size of the circle */
    height: 8vw;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4vh; /* Add spacing below the circle */
    box-shadow: 0 1vw 2vw rgba(0, 0, 0, 0.1);
  }

  /* Trusted Section */
  .trusted-section-unique {
    padding: 8vh 4vw;
    width: 100%;
  }

  .container-trusted {
    max-width: 100%;
    margin: 0 auto;
  }

  .trusted-title {
    font-size: 5vw;
    margin-bottom: 5vh;
    font-weight: bold;
  }

  /* Slider container without wrapping */
  .slider-container {
    display: flex;
    gap: 5vw;
    padding: 5vw;
    width: 100%;
    scrollbar-width: none; /* Hide scrollbar in Firefox */
  }

  /* Hide scrollbar for WebKit browsers (Chrome, Safari, Edge) */
  .slider-container::-webkit-scrollbar {
    display: none;
  }

  /* Slider items */
  .slider-item {
    display: inline-block; /* Ensure items stay in a single line */
    width: 25vw; /* Adjust width to fit more items in a single line */
    padding: 2vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
    flex-shrink: 0; /* Prevent items from shrinking */
  }

  /* Image inside each slider item */
  .slider-item img.img-fluid-trusted {
    width: 100%;
    height: auto;
    border-radius: 2vw; /* Optional rounding for images */
    object-fit: contain; /* Ensure full logo visibility without cropping */
  }

  /* Username styling */
  .trusted-username {
    font-size: 4vw;
    padding: 3vh;
    border-radius: 2vw;
    text-align: center;
  }
}

@media (min-width: 831px) and (max-width: 850px) {
  /* General Adjustments */
  body {
    text-align: left;
    width: 100%;
  }

  .hero-section-unique {
    background-image: url("/images/backgrounds/linxhub-image-background.svg");
    background-color: #c0ade1;
    background-size: cover;
    background-position: right center;
    padding-top: 22.08vh; /* 40px */
    margin-top: -20vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    height: 160%;
  }

  .container-hero,
  .row-hero {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .text-content-hero {
    width: 100%;
    text-align: left;
    margin-top: -2.5%;
    margin-left: -4vw;
  }

  .hero-heading {
    font-size: 9.5vw;
    padding-top: -1vh;
    width: 110%;
    text-align: left;
  }

  .hero-links-text,
  .domain-box-hero {
    font-size: 7.7vw;
    text-align: left;
    width: 100%;
    margin-top: -1.5vh;
  }

  /* Parent container for prefix, input, and button */
  /* Parent container for the input group */
  .input-group-hero {
    display: flex;
    flex-direction: column; /* Stack the input row and button vertically */
    align-items: center;
    width: 100%;
    margin-bottom: 2vh;
  }

  /* Container for prefix and input field */
  .input-group-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%; /* Adjust the width as needed */
    margin-bottom: 2vh;
    gap: 0;
  }

  /* Prefix text styling */
  .input-group-text-hero {
    font-size: 5.5vw;
    padding: 2.5vh;
    border-radius: 2vw 0 0 2vw;
    text-align: center;
    flex-shrink: 0; /* Prevent shrinking */
    margin-right: 40vw;
  }

  /* Input field styling */
  .username-input-field {
    font-size: 5.5vw;
    padding: 2.5vh;
    border-radius: 0 2vw 2vw 0;
    padding-left: 1.5vw;
    flex-grow: 1; /* Allow input to take remaining space */
    border-left: none; /* Remove border between prefix and input */
    width: 60%;
    margin-left: 36vw;
    margin-top: -20.2vh;
  }

  /* Button container */
  .input-group-append-hero {
    width: 80%;
    display: flex;
    justify-content: center;
    margin-top: 2vh;
  }

  /* Button styling */
  .create-link-btn-hero {
    font-size: 5.5vw;
    padding: 2.5vh;
    width: 100%;
    border-radius: 5vw;
  }

  .create-link-btn-hero:hover {
    background-color: #75eeec;
  }

  .create-link-btn-hero:hover {
    background-color: #75eeec;
  }

  /* Error Message Styling */
  .text-danger-hero {
    color: #dc3545;
    font-size: 4vw;
    margin-top: 1vh;
  }

  /* Image Content */
  .image-content-hero {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 2vh;
  }

  /* Mobile-Only Hero Section */
  .hero-section-unique-mobile {
    background-image: url("/images/backgrounds/1080_1920.svg");
    background-color: #c0ade1; /* Color appears behind the SVG */
    background-repeat: no-repeat;
    background-position: center Top; /* Center the SVG horizontally, align it to the top */
    padding-top: 4vh;
    margin-top: -10vh;
    display: flex;
    height: 140vh;
    align-items: center;
    justify-content: center;
    margin-bottom: -12.8vh;
  }

  /* Templates Section */
  .templates-section-unique,
  .container-templates,
  .row-templates {
    flex-direction: column;
    align-items: center;
    padding: 1.5vh 0;
    width: 100%;
    overflow: hidden;
  }

  .image-content-templates {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .text-content-templates {
    width: 100%;
    padding: 2vw;
    text-align: left;
  }

  .text-content-templates h2.template-heading {
    font-size: 5vw;
  }

  .text-content-templates p.template-description {
    font-size: 3vw;
    padding-left: 0.5vw;
    line-height: 1.6;
  }

  .create-link-btn-templates {
    font-size: 5.5vw;
    padding: 2.5vh;
    width: 70%;
    border-radius: 5vw;
    margin-left: 15vw;
  }

  /* Features Section */
  .features-section-unique {
    padding: 8vh 4vw;
  }

  .section-title-features {
    font-size: 5vw;
    margin-bottom: 4vh;
    font-weight: bold;
  }

  .feature-boxes-container {
    grid-template-columns: 1fr;
    gap: 5vw;
    max-width: 90vw;
    margin: 0 auto;
  }

  .feature-box-item {
    padding: 6vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
  }

  .feature-box-item p {
    font-size: 3vw;
  }

  .heart-icon {
    width: 10vw;
    height: 10vw;
    margin-bottom: 3vh;
  }

  /* How it Works Section */
  .how-it-works-section-unique {
    padding: 8vh 4vw;
    width: 100%;
  }
  .step-number-circle {
    font-size: 2vw;
  }

  .container-how-it-works {
    max-width: 100%;
    margin: 0 auto;
  }

  .how-it-works-heading {
    font-size: 5vw;
    font-weight: bold;
    margin-bottom: 4vh;
  }

  .row-how-it-works {
    display: flex;
    flex-direction: column;
    gap: 5vw;
  }

  .step-box {
    padding: 6vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
    width: 100%;
  }

  .step-title {
    font-size: 5vw;
  }

  .step-description {
    font-size: 3vw;
    line-height: 1.6;
    padding-left: 0.5vw;
  }

  /* Make the step number circle larger and more prominent */
  .step-number-circle {
    font-size: 5vw; /* Increase the size of the number */
    background-color: #0b2a44; /* Add a background color */
    color: white;
    width: 8vw; /* Adjust the size of the circle */
    height: 8vw;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4vh; /* Add spacing below the circle */
    box-shadow: 0 1vw 2vw rgba(0, 0, 0, 0.1);
  }

  /* Trusted Section */
  .trusted-section-unique {
    padding: 8vh 4vw;
    width: 100%;
  }

  .container-trusted {
    max-width: 100%;
    margin: 0 auto;
  }

  .trusted-title {
    font-size: 5vw;
    margin-bottom: 5vh;
    font-weight: bold;
  }

  /* Slider container without wrapping */
  .slider-container {
    display: flex;
    gap: 5vw;
    padding: 5vw;
    width: 100%;
    scrollbar-width: none; /* Hide scrollbar in Firefox */
  }

  /* Hide scrollbar for WebKit browsers (Chrome, Safari, Edge) */
  .slider-container::-webkit-scrollbar {
    display: none;
  }

  /* Slider items */
  .slider-item {
    display: inline-block; /* Ensure items stay in a single line */
    width: 25vw; /* Adjust width to fit more items in a single line */
    padding: 2vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
    flex-shrink: 0; /* Prevent items from shrinking */
  }

  /* Image inside each slider item */
  .slider-item img.img-fluid-trusted {
    width: 100%;
    height: auto;
    border-radius: 2vw; /* Optional rounding for images */
    object-fit: contain; /* Ensure full logo visibility without cropping */
  }

  /* Username styling */
  .trusted-username {
    font-size: 4vw;
    padding: 3vh;
    border-radius: 2vw;
    text-align: center;
  }
}

@media (min-width: 851px) and (max-width: 870px) {
  /* General Adjustments */
  body {
    text-align: left;
    width: 100%;
  }

  .hero-section-unique {
    background-image: url("/images/backgrounds/linxhub-image-background.svg");
    background-color: #c0ade1;
    background-size: cover;
    background-position: right center;
    padding-top: 22.08vh; /* 40px */
    margin-top: -20vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    height: 160%;
  }

  .container-hero,
  .row-hero {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .text-content-hero {
    width: 100%;
    text-align: left;
    margin-top: -2.5%;
    margin-left: -4vw;
  }

  .hero-heading {
    font-size: 9.5vw;
    padding-top: -1vh;
    width: 110%;
    text-align: left;
  }

  .hero-links-text,
  .domain-box-hero {
    font-size: 7.7vw;
    text-align: left;
    width: 100%;
    margin-top: -1.5vh;
  }

  /* Parent container for prefix, input, and button */
  /* Parent container for the input group */
  .input-group-hero {
    display: flex;
    flex-direction: column; /* Stack the input row and button vertically */
    align-items: center;
    width: 100%;
    margin-bottom: 2vh;
  }

  /* Container for prefix and input field */
  .input-group-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%; /* Adjust the width as needed */
    margin-bottom: 2vh;
    gap: 0;
  }

  /* Prefix text styling */
  .input-group-text-hero {
    font-size: 5.5vw;
    padding: 2.5vh;
    border-radius: 2vw 0 0 2vw;
    text-align: center;
    flex-shrink: 0; /* Prevent shrinking */
    margin-right: 40vw;
  }

  /* Input field styling */
  .username-input-field {
    font-size: 5.5vw;
    padding: 2.5vh;
    border-radius: 0 2vw 2vw 0;
    padding-left: 1.5vw;
    flex-grow: 1; /* Allow input to take remaining space */
    border-left: none; /* Remove border between prefix and input */
    width: 60%;
    margin-left: 34vw;
    margin-top: -20.85vh;
  }

  /* Button container */
  .input-group-append-hero {
    width: 80%;
    display: flex;
    justify-content: center;
    margin-top: 2vh;
  }

  /* Button styling */
  .create-link-btn-hero {
    font-size: 5.5vw;
    padding: 2.5vh;
    width: 100%;
    border-radius: 5vw;
  }

  .create-link-btn-hero:hover {
    background-color: #75eeec;
  }

  .create-link-btn-hero:hover {
    background-color: #75eeec;
  }

  /* Error Message Styling */
  .text-danger-hero {
    color: #dc3545;
    font-size: 4vw;
    margin-top: 1vh;
  }

  /* Image Content */
  .image-content-hero {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 2vh;
  }

  /* Mobile-Only Hero Section */
  .hero-section-unique-mobile {
    background-image: url("/images/backgrounds/1080_1920.svg");
    background-color: #c0ade1; /* Color appears behind the SVG */
    background-repeat: no-repeat;
    background-position: center Top; /* Center the SVG horizontally, align it to the top */
    padding-top: 4vh;
    margin-top: -10vh;
    display: flex;
    height: 140vh;
    align-items: center;
    justify-content: center;
    margin-bottom: -12.8vh;
  }

  /* Templates Section */
  .templates-section-unique,
  .container-templates,
  .row-templates {
    flex-direction: column;
    align-items: center;
    padding: 1.5vh 0;
    width: 100%;
    overflow: hidden;
  }

  .image-content-templates {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .text-content-templates {
    width: 100%;
    padding: 2vw;
    text-align: left;
  }

  .text-content-templates h2.template-heading {
    font-size: 5vw;
  }

  .text-content-templates p.template-description {
    font-size: 3vw;
    padding-left: 0.5vw;
    line-height: 1.6;
  }

  .create-link-btn-templates {
    font-size: 5.5vw;
    padding: 2.5vh;
    width: 70%;
    border-radius: 5vw;
    margin-left: 15vw;
  }

  /* Features Section */
  .features-section-unique {
    padding: 8vh 4vw;
  }

  .section-title-features {
    font-size: 5vw;
    margin-bottom: 4vh;
    font-weight: bold;
  }

  .feature-boxes-container {
    grid-template-columns: 1fr;
    gap: 5vw;
    max-width: 90vw;
    margin: 0 auto;
  }

  .feature-box-item {
    padding: 6vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
  }

  .feature-box-item p {
    font-size: 3vw;
  }

  .heart-icon {
    width: 10vw;
    height: 10vw;
    margin-bottom: 3vh;
  }

  /* How it Works Section */
  .how-it-works-section-unique {
    padding: 8vh 4vw;
    width: 100%;
  }
  .step-number-circle {
    font-size: 2vw;
  }

  .container-how-it-works {
    max-width: 100%;
    margin: 0 auto;
  }

  .how-it-works-heading {
    font-size: 5vw;
    font-weight: bold;
    margin-bottom: 4vh;
  }

  .row-how-it-works {
    display: flex;
    flex-direction: column;
    gap: 5vw;
  }

  .step-box {
    padding: 6vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
    width: 100%;
  }

  .step-title {
    font-size: 5vw;
  }

  .step-description {
    font-size: 3vw;
    line-height: 1.6;
    padding-left: 0.5vw;
  }

  /* Make the step number circle larger and more prominent */
  .step-number-circle {
    font-size: 5vw; /* Increase the size of the number */
    background-color: #0b2a44; /* Add a background color */
    color: white;
    width: 8vw; /* Adjust the size of the circle */
    height: 8vw;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4vh; /* Add spacing below the circle */
    box-shadow: 0 1vw 2vw rgba(0, 0, 0, 0.1);
  }

  /* Trusted Section */
  .trusted-section-unique {
    padding: 8vh 4vw;
    width: 100%;
  }

  .container-trusted {
    max-width: 100%;
    margin: 0 auto;
  }

  .trusted-title {
    font-size: 5vw;
    margin-bottom: 5vh;
    font-weight: bold;
  }

  /* Slider container without wrapping */
  .slider-container {
    display: flex;
    gap: 5vw;
    padding: 5vw;
    width: 100%;
    scrollbar-width: none; /* Hide scrollbar in Firefox */
  }

  /* Hide scrollbar for WebKit browsers (Chrome, Safari, Edge) */
  .slider-container::-webkit-scrollbar {
    display: none;
  }

  /* Slider items */
  .slider-item {
    display: inline-block; /* Ensure items stay in a single line */
    width: 25vw; /* Adjust width to fit more items in a single line */
    padding: 2vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
    flex-shrink: 0; /* Prevent items from shrinking */
  }

  /* Image inside each slider item */
  .slider-item img.img-fluid-trusted {
    width: 100%;
    height: auto;
    border-radius: 2vw; /* Optional rounding for images */
    object-fit: contain; /* Ensure full logo visibility without cropping */
  }

  /* Username styling */
  .trusted-username {
    font-size: 4vw;
    padding: 3vh;
    border-radius: 2vw;
    text-align: center;
  }
}

@media (min-width: 871px) and (max-width: 890px) {
  /* General Adjustments */
  body {
    text-align: left;
    width: 100%;
  }

  .hero-section-unique {
    background-image: url("/images/backgrounds/linxhub-image-background.svg");
    background-color: #c0ade1;
    background-size: cover;
    background-position: right center;
    padding-top: 22.08vh; /* 40px */
    margin-top: -20vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    height: 160%;
  }

  .container-hero,
  .row-hero {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .text-content-hero {
    width: 100%;
    text-align: left;
    margin-top: -2.5%;
    margin-left: -4vw;
  }

  .hero-heading {
    font-size: 9.5vw;
    padding-top: -1vh;
    width: 110%;
    text-align: left;
  }

  .hero-links-text,
  .domain-box-hero {
    font-size: 7.7vw;
    text-align: left;
    width: 100%;
    margin-top: -1.5vh;
  }

  /* Parent container for prefix, input, and button */
  /* Parent container for the input group */
  .input-group-hero {
    display: flex;
    flex-direction: column; /* Stack the input row and button vertically */
    align-items: center;
    width: 100%;
    margin-bottom: 2vh;
  }

  /* Container for prefix and input field */
  .input-group-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%; /* Adjust the width as needed */
    margin-bottom: 2vh;
    gap: 0;
  }

  /* Prefix text styling */
  .input-group-text-hero {
    font-size: 5.5vw;
    padding: 2.5vh;
    border-radius: 2vw 0 0 2vw;
    text-align: center;
    flex-shrink: 0; /* Prevent shrinking */
    margin-right: 40vw;
  }

  /* Input field styling */
  .username-input-field {
    font-size: 5.5vw;
    padding: 2.5vh;
    border-radius: 0 2vw 2vw 0;
    padding-left: 1.5vw;
    flex-grow: 1; /* Allow input to take remaining space */
    border-left: none; /* Remove border between prefix and input */
    width: 60%;
    margin-left: 36vw;
    margin-top: -20.8vh;
  }

  /* Button container */
  .input-group-append-hero {
    width: 80%;
    display: flex;
    justify-content: center;
    margin-top: 2vh;
  }

  /* Button styling */
  .create-link-btn-hero {
    font-size: 5.5vw;
    padding: 2.5vh;
    width: 100%;
    border-radius: 5vw;
  }

  .create-link-btn-hero:hover {
    background-color: #75eeec;
  }

  .create-link-btn-hero:hover {
    background-color: #75eeec;
  }

  /* Error Message Styling */
  .text-danger-hero {
    color: #dc3545;
    font-size: 4vw;
    margin-top: 1vh;
  }

  /* Image Content */
  .image-content-hero {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 2vh;
  }

  /* Mobile-Only Hero Section */
  .hero-section-unique-mobile {
    background-image: url("/images/backgrounds/1080_1920.svg");
    background-color: #c0ade1; /* Color appears behind the SVG */
    background-repeat: no-repeat;
    background-position: center Top; /* Center the SVG horizontally, align it to the top */
    padding-top: 4vh;
    margin-top: -10vh;
    display: flex;
    height: 140vh;
    align-items: center;
    justify-content: center;
    margin-bottom: -12.8vh;
  }

  /* Templates Section */
  .templates-section-unique,
  .container-templates,
  .row-templates {
    flex-direction: column;
    align-items: center;
    padding: 1.5vh 0;
    width: 100%;
    overflow: hidden;
  }

  .image-content-templates {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .text-content-templates {
    width: 100%;
    padding: 2vw;
    text-align: left;
  }

  .text-content-templates h2.template-heading {
    font-size: 5vw;
  }

  .text-content-templates p.template-description {
    font-size: 3vw;
    padding-left: 0.5vw;
    line-height: 1.6;
  }

  .create-link-btn-templates {
    font-size: 5.5vw;
    padding: 2.5vh;
    width: 70%;
    border-radius: 5vw;
    margin-left: 15vw;
  }

  /* Features Section */
  .features-section-unique {
    padding: 8vh 4vw;
  }

  .section-title-features {
    font-size: 5vw;
    margin-bottom: 4vh;
    font-weight: bold;
  }

  .feature-boxes-container {
    grid-template-columns: 1fr;
    gap: 5vw;
    max-width: 90vw;
    margin: 0 auto;
  }

  .feature-box-item {
    padding: 6vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
  }

  .feature-box-item p {
    font-size: 3vw;
  }

  .heart-icon {
    width: 10vw;
    height: 10vw;
    margin-bottom: 3vh;
  }

  /* How it Works Section */
  .how-it-works-section-unique {
    padding: 8vh 4vw;
    width: 100%;
  }
  .step-number-circle {
    font-size: 2vw;
  }

  .container-how-it-works {
    max-width: 100%;
    margin: 0 auto;
  }

  .how-it-works-heading {
    font-size: 5vw;
    font-weight: bold;
    margin-bottom: 4vh;
  }

  .row-how-it-works {
    display: flex;
    flex-direction: column;
    gap: 5vw;
  }

  .step-box {
    padding: 6vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
    width: 100%;
  }

  .step-title {
    font-size: 5vw;
  }

  .step-description {
    font-size: 3vw;
    line-height: 1.6;
    padding-left: 0.5vw;
  }

  /* Make the step number circle larger and more prominent */
  .step-number-circle {
    font-size: 5vw; /* Increase the size of the number */
    background-color: #0b2a44; /* Add a background color */
    color: white;
    width: 8vw; /* Adjust the size of the circle */
    height: 8vw;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4vh; /* Add spacing below the circle */
    box-shadow: 0 1vw 2vw rgba(0, 0, 0, 0.1);
  }

  /* Trusted Section */
  .trusted-section-unique {
    padding: 8vh 4vw;
    width: 100%;
  }

  .container-trusted {
    max-width: 100%;
    margin: 0 auto;
  }

  .trusted-title {
    font-size: 5vw;
    margin-bottom: 5vh;
    font-weight: bold;
  }

  /* Slider container without wrapping */
  .slider-container {
    display: flex;
    gap: 5vw;
    padding: 5vw;
    width: 100%;
    scrollbar-width: none; /* Hide scrollbar in Firefox */
  }

  /* Hide scrollbar for WebKit browsers (Chrome, Safari, Edge) */
  .slider-container::-webkit-scrollbar {
    display: none;
  }

  /* Slider items */
  .slider-item {
    display: inline-block; /* Ensure items stay in a single line */
    width: 25vw; /* Adjust width to fit more items in a single line */
    padding: 2vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
    flex-shrink: 0; /* Prevent items from shrinking */
  }

  /* Image inside each slider item */
  .slider-item img.img-fluid-trusted {
    width: 100%;
    height: auto;
    border-radius: 2vw; /* Optional rounding for images */
    object-fit: contain; /* Ensure full logo visibility without cropping */
  }

  /* Username styling */
  .trusted-username {
    font-size: 4vw;
    padding: 3vh;
    border-radius: 2vw;
    text-align: center;
  }
}

@media (min-width: 891px) and (max-width: 910px) {
  /* General Adjustments */
  body {
    text-align: left;
    width: 100%;
  }

  .hero-section-unique {
    background-image: url("/images/backgrounds/linxhub-image-background.svg");
    background-color: #c0ade1;
    background-size: cover;
    background-position: right center;
    padding-top: 22.08vh; /* 40px */
    margin-top: -20vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    height: 160%;
  }

  .container-hero,
  .row-hero {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .text-content-hero {
    width: 100%;
    text-align: left;
    margin-top: -2.5%;
    margin-left: -4vw;
  }

  .hero-heading {
    font-size: 9.5vw;
    padding-top: -1vh;
    width: 110%;
    text-align: left;
  }

  .hero-links-text,
  .domain-box-hero {
    font-size: 7.7vw;
    text-align: left;
    width: 100%;
    margin-top: -1.5vh;
  }

  /* Parent container for prefix, input, and button */
  /* Parent container for the input group */
  .input-group-hero {
    display: flex;
    flex-direction: column; /* Stack the input row and button vertically */
    align-items: center;
    width: 100%;
    margin-bottom: 2vh;
  }

  /* Container for prefix and input field */
  .input-group-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%; /* Adjust the width as needed */
    margin-bottom: 2vh;
    gap: 0;
  }

  /* Prefix text styling */
  .input-group-text-hero {
    font-size: 5.5vw;
    padding: 2.5vh;
    border-radius: 2vw 0 0 2vw;
    text-align: center;
    flex-shrink: 0; /* Prevent shrinking */
    margin-right: 40vw;
  }

  /* Input field styling */
  .username-input-field {
    font-size: 5.5vw;
    padding: 2.5vh;
    border-radius: 0 2vw 2vw 0;
    padding-left: 1.5vw;
    flex-grow: 1; /* Allow input to take remaining space */
    border-left: none; /* Remove border between prefix and input */
    width: 60%;
    margin-left: 36vw;
    margin-top: -21.2vh;
  }

  /* Button container */
  .input-group-append-hero {
    width: 80%;
    display: flex;
    justify-content: center;
    margin-top: 2vh;
  }

  /* Button styling */
  .create-link-btn-hero {
    font-size: 5.5vw;
    padding: 2.5vh;
    width: 100%;
    border-radius: 5vw;
  }

  .create-link-btn-hero:hover {
    background-color: #75eeec;
  }

  .create-link-btn-hero:hover {
    background-color: #75eeec;
  }

  /* Error Message Styling */
  .text-danger-hero {
    color: #dc3545;
    font-size: 4vw;
    margin-top: 1vh;
  }

  /* Image Content */
  .image-content-hero {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 2vh;
  }

  /* Mobile-Only Hero Section */
  .hero-section-unique-mobile {
    background-image: url("/images/backgrounds/1080_1920.svg");
    background-color: #c0ade1; /* Color appears behind the SVG */
    background-repeat: no-repeat;
    background-position: center Top; /* Center the SVG horizontally, align it to the top */
    padding-top: 4vh;
    margin-top: -10vh;
    display: flex;
    height: 140vh;
    align-items: center;
    justify-content: center;
    margin-bottom: -12.8vh;
  }

  /* Templates Section */
  .templates-section-unique,
  .container-templates,
  .row-templates {
    flex-direction: column;
    align-items: center;
    padding: 1.5vh 0;
    width: 100%;
    overflow: hidden;
  }

  .image-content-templates {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .text-content-templates {
    width: 100%;
    padding: 2vw;
    text-align: left;
  }

  .text-content-templates h2.template-heading {
    font-size: 5vw;
  }

  .text-content-templates p.template-description {
    font-size: 3vw;
    padding-left: 0.5vw;
    line-height: 1.6;
  }

  .create-link-btn-templates {
    font-size: 5.5vw;
    padding: 2.5vh;
    width: 70%;
    border-radius: 5vw;
    margin-left: 15vw;
  }

  /* Features Section */
  .features-section-unique {
    padding: 8vh 4vw;
  }

  .section-title-features {
    font-size: 5vw;
    margin-bottom: 4vh;
    font-weight: bold;
  }

  .feature-boxes-container {
    grid-template-columns: 1fr;
    gap: 5vw;
    max-width: 90vw;
    margin: 0 auto;
  }

  .feature-box-item {
    padding: 6vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
  }

  .feature-box-item p {
    font-size: 3vw;
  }

  .heart-icon {
    width: 10vw;
    height: 10vw;
    margin-bottom: 3vh;
  }

  /* How it Works Section */
  .how-it-works-section-unique {
    padding: 8vh 4vw;
    width: 100%;
  }
  .step-number-circle {
    font-size: 2vw;
  }

  .container-how-it-works {
    max-width: 100%;
    margin: 0 auto;
  }

  .how-it-works-heading {
    font-size: 5vw;
    font-weight: bold;
    margin-bottom: 4vh;
  }

  .row-how-it-works {
    display: flex;
    flex-direction: column;
    gap: 5vw;
  }

  .step-box {
    padding: 6vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
    width: 100%;
  }

  .step-title {
    font-size: 5vw;
  }

  .step-description {
    font-size: 3vw;
    line-height: 1.6;
    padding-left: 0.5vw;
  }

  /* Make the step number circle larger and more prominent */
  .step-number-circle {
    font-size: 5vw; /* Increase the size of the number */
    background-color: #0b2a44; /* Add a background color */
    color: white;
    width: 8vw; /* Adjust the size of the circle */
    height: 8vw;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4vh; /* Add spacing below the circle */
    box-shadow: 0 1vw 2vw rgba(0, 0, 0, 0.1);
  }

  /* Trusted Section */
  .trusted-section-unique {
    padding: 8vh 4vw;
    width: 100%;
  }

  .container-trusted {
    max-width: 100%;
    margin: 0 auto;
  }

  .trusted-title {
    font-size: 5vw;
    margin-bottom: 5vh;
    font-weight: bold;
  }

  /* Slider container without wrapping */
  .slider-container {
    display: flex;
    gap: 5vw;
    padding: 5vw;
    width: 100%;
    scrollbar-width: none; /* Hide scrollbar in Firefox */
  }

  /* Hide scrollbar for WebKit browsers (Chrome, Safari, Edge) */
  .slider-container::-webkit-scrollbar {
    display: none;
  }

  /* Slider items */
  .slider-item {
    display: inline-block; /* Ensure items stay in a single line */
    width: 25vw; /* Adjust width to fit more items in a single line */
    padding: 2vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
    flex-shrink: 0; /* Prevent items from shrinking */
  }

  /* Image inside each slider item */
  .slider-item img.img-fluid-trusted {
    width: 100%;
    height: auto;
    border-radius: 2vw; /* Optional rounding for images */
    object-fit: contain; /* Ensure full logo visibility without cropping */
  }

  /* Username styling */
  .trusted-username {
    font-size: 4vw;
    padding: 3vh;
    border-radius: 2vw;
    text-align: center;
  }
}
@media (min-width: 911px) and (max-width: 930px) {
  /* General Adjustments */
  body {
    text-align: left;
    width: 100%;
  }

  .hero-section-unique {
    background-image: url("/images/backgrounds/linxhub-image-background.svg");
    background-color: #c0ade1;
    background-size: cover;
    background-position: right center;
    padding-top: 22.08vh; /* 40px */
    margin-top: -20vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    height: 160%;
  }

  .container-hero,
  .row-hero {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .text-content-hero {
    width: 100%;
    text-align: left;
    margin-top: -2.5%;
    margin-left: -4vw;
  }

  .hero-heading {
    font-size: 9.5vw;
    padding-top: 5vh;
    width: 110%;
    text-align: left;
  }
  .sub-hero-heading {
    font-size: 4.8vw;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.04vh;
    display: inline-block;
  }

  .hero-links-text,
  .domain-box-hero {
    font-size: 7.7vw;
    text-align: left;
    width: 100%;
    margin-top: -1.5vh;
  }

  /* Parent container for prefix, input, and button */
  /* Parent container for the input group */
  .input-group-hero {
    display: flex;
    flex-direction: column; /* Stack the input row and button vertically */
    align-items: center;
    width: 100%;
    margin-bottom: 2vh;
  }

  /* Container for prefix and input field */
  .input-group-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%; /* Adjust the width as needed */
    margin-bottom: 2vh;
    gap: 0;
  }

  /* Prefix text styling */
  .input-group-text-hero {
    font-size: 5.5vw;
    padding: 2.5vh;
    border-radius: 2vw 0 0 2vw;
    text-align: center;
    flex-shrink: 0; /* Prevent shrinking */
    margin-right: 40vw;
  }

  /* Input field styling */
  .username-input-field {
    font-size: 5.5vw;
    padding: 2.5vh;
    border-radius: 0 2vw 2vw 0;
    padding-left: 1.5vw;
    flex-grow: 1; /* Allow input to take remaining space */
    border-left: none; /* Remove border between prefix and input */
    width: 60%;
    margin-left: 34vw;
    margin-top: -10.94vh;
  }

  /* Button container */
  .input-group-append-hero {
    width: 80%;
    display: flex;
    justify-content: center;
    margin-top: 2vh;
  }

  /* Button styling */
  .create-link-btn-hero {
    font-size: 5.5vw;
    padding: 2.5vh;
    width: 100%;
    border-radius: 5vw;
  }

  .create-link-btn-hero:hover {
    background-color: #75eeec;
  }

  .create-link-btn-hero:hover {
    background-color: #75eeec;
  }

  /* Error Message Styling */
  .text-danger-hero {
    color: #dc3545;
    font-size: 4vw;
    margin-top: 1vh;
  }

  /* Image Content */
  .image-content-hero {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 2vh;
  }

  /* Mobile-Only Hero Section */
  .hero-section-unique-mobile {
    background-image: url("/images/backgrounds/1080_1920.svg");
    background-color: #c0ade1; /* Color appears behind the SVG */
    background-repeat: no-repeat;
    background-position: center Top; /* Center the SVG horizontally, align it to the top */
    padding-top: 4vh;
    margin-top: -10vh;
    display: flex;
    height: 140vh;
    align-items: center;
    justify-content: center;
    margin-bottom: -12.8vh;
  }

  /* Templates Section */
  .templates-section-unique,
  .container-templates,
  .row-templates {
    flex-direction: column;
    align-items: center;
    padding: 1.5vh 0;
    width: 100%;
    overflow: hidden;
  }

  .image-content-templates {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .text-content-templates {
    width: 100%;
    padding: 2vw;
    text-align: left;
  }

  .text-content-templates h2.template-heading {
    font-size: 5vw;
  }

  .text-content-templates p.template-description {
    font-size: 3vw;
    padding-left: 0.5vw;
    line-height: 1.6;
  }

  .create-link-btn-templates {
    font-size: 5.5vw;
    padding: 2.5vh;
    width: 70%;
    border-radius: 5vw;
    margin-left: 15vw;
  }

  /* Features Section */
  .features-section-unique {
    padding: 8vh 4vw;
  }

  .section-title-features {
    font-size: 5vw;
    margin-bottom: 4vh;
    font-weight: bold;
  }

  .feature-boxes-container {
    grid-template-columns: 1fr;
    gap: 5vw;
    max-width: 90vw;
    margin: 0 auto;
  }

  .feature-box-item {
    padding: 6vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
  }

  .feature-box-item p {
    font-size: 3vw;
  }

  .heart-icon {
    width: 10vw;
    height: 10vw;
    margin-bottom: 3vh;
  }

  /* How it Works Section */
  .how-it-works-section-unique {
    padding: 8vh 4vw;
    width: 100%;
  }
  .step-number-circle {
    font-size: 2vw;
  }

  .container-how-it-works {
    max-width: 100%;
    margin: 0 auto;
  }

  .how-it-works-heading {
    font-size: 5vw;
    font-weight: bold;
    margin-bottom: 4vh;
  }

  .row-how-it-works {
    display: flex;
    flex-direction: column;
    gap: 5vw;
  }

  .step-box {
    padding: 6vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
    width: 100%;
  }

  .step-title {
    font-size: 5vw;
  }

  .step-description {
    font-size: 3vw;
    line-height: 1.6;
    padding-left: 0.5vw;
  }

  /* Make the step number circle larger and more prominent */
  .step-number-circle {
    font-size: 5vw; /* Increase the size of the number */
    background-color: #0b2a44; /* Add a background color */
    color: white;
    width: 8vw; /* Adjust the size of the circle */
    height: 8vw;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4vh; /* Add spacing below the circle */
    box-shadow: 0 1vw 2vw rgba(0, 0, 0, 0.1);
  }

  /* Trusted Section */
  .trusted-section-unique {
    padding: 8vh 4vw;
    width: 100%;
  }

  .container-trusted {
    max-width: 100%;
    margin: 0 auto;
  }

  .trusted-title {
    font-size: 5vw;
    margin-bottom: 5vh;
    font-weight: bold;
  }

  /* Slider container without wrapping */
  .slider-container {
    display: flex;
    gap: 5vw;
    padding: 5vw;
    width: 100%;
    scrollbar-width: none; /* Hide scrollbar in Firefox */
  }

  /* Hide scrollbar for WebKit browsers (Chrome, Safari, Edge) */
  .slider-container::-webkit-scrollbar {
    display: none;
  }

  /* Slider items */
  .slider-item {
    display: inline-block; /* Ensure items stay in a single line */
    width: 25vw; /* Adjust width to fit more items in a single line */
    padding: 2vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
    flex-shrink: 0; /* Prevent items from shrinking */
  }

  /* Image inside each slider item */
  .slider-item img.img-fluid-trusted {
    width: 100%;
    height: auto;
    border-radius: 2vw; /* Optional rounding for images */
    object-fit: contain; /* Ensure full logo visibility without cropping */
  }

  /* Username styling */
  .trusted-username {
    font-size: 4vw;
    padding: 3vh;
    border-radius: 2vw;
    text-align: center;
  }
}
@media (min-width: 931px) and (max-width: 950px) {
  /* General Adjustments */
  body {
    text-align: left;
    width: 100%;
  }

  .hero-section-unique {
    background-image: url("/images/backgrounds/linxhub-image-background.svg");
    background-color: #c0ade1;
    background-size: cover;
    background-position: right center;
    padding-top: 22.08vh; /* 40px */
    margin-top: -20vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    height: 160%;
  }

  .container-hero,
  .row-hero {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .text-content-hero {
    width: 100%;
    text-align: left;
    margin-top: -2.5%;
    margin-left: -4vw;
  }

  .hero-heading {
    font-size: 9.5vw;
    padding-top: -1vh;
    width: 110%;
    text-align: left;
  }

  .hero-links-text,
  .domain-box-hero {
    font-size: 7.7vw;
    text-align: left;
    width: 100%;
    margin-top: -1.5vh;
  }

  /* Parent container for prefix, input, and button */
  /* Parent container for the input group */
  .input-group-hero {
    display: flex;
    flex-direction: column; /* Stack the input row and button vertically */
    align-items: center;
    width: 100%;
    margin-bottom: 2vh;
  }

  /* Container for prefix and input field */
  .input-group-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%; /* Adjust the width as needed */
    margin-bottom: 2vh;
    gap: 0;
  }

  /* Prefix text styling */
  .input-group-text-hero {
    font-size: 5.5vw;
    padding: 2.5vh;
    border-radius: 2vw 0 0 2vw;
    text-align: center;
    flex-shrink: 0; /* Prevent shrinking */
    margin-right: 40vw;
  }

  /* Input field styling */
  .username-input-field {
    font-size: 5.5vw;
    padding: 2.5vh;
    border-radius: 0 2vw 2vw 0;
    padding-left: 1.5vw;
    flex-grow: 1; /* Allow input to take remaining space */
    border-left: none; /* Remove border between prefix and input */
    width: 60%;
    margin-left: 36vw;
    margin-top: -21.87vh;
  }

  /* Button container */
  .input-group-append-hero {
    width: 80%;
    display: flex;
    justify-content: center;
    margin-top: 2vh;
  }

  /* Button styling */
  .create-link-btn-hero {
    font-size: 5.5vw;
    padding: 2.5vh;
    width: 100%;
    border-radius: 5vw;
  }

  .create-link-btn-hero:hover {
    background-color: #75eeec;
  }

  .create-link-btn-hero:hover {
    background-color: #75eeec;
  }

  /* Error Message Styling */
  .text-danger-hero {
    color: #dc3545;
    font-size: 4vw;
    margin-top: 1vh;
  }

  /* Image Content */
  .image-content-hero {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 2vh;
  }

  /* Mobile-Only Hero Section */
  .hero-section-unique-mobile {
    background-image: url("/images/backgrounds/1080_1920.svg");
    background-color: #c0ade1; /* Color appears behind the SVG */
    background-repeat: no-repeat;
    background-position: center Top; /* Center the SVG horizontally, align it to the top */
    padding-top: 4vh;
    margin-top: -10vh;
    display: flex;
    height: 140vh;
    align-items: center;
    justify-content: center;
    margin-bottom: -12.8vh;
  }

  /* Templates Section */
  .templates-section-unique,
  .container-templates,
  .row-templates {
    flex-direction: column;
    align-items: center;
    padding: 1.5vh 0;
    width: 100%;
    overflow: hidden;
  }

  .image-content-templates {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .text-content-templates {
    width: 100%;
    padding: 2vw;
    text-align: left;
  }

  .text-content-templates h2.template-heading {
    font-size: 5vw;
  }

  .text-content-templates p.template-description {
    font-size: 3vw;
    padding-left: 0.5vw;
    line-height: 1.6;
  }

  .create-link-btn-templates {
    font-size: 5.5vw;
    padding: 2.5vh;
    width: 70%;
    border-radius: 5vw;
    margin-left: 15vw;
  }

  /* Features Section */
  .features-section-unique {
    padding: 8vh 4vw;
  }

  .section-title-features {
    font-size: 5vw;
    margin-bottom: 4vh;
    font-weight: bold;
  }

  .feature-boxes-container {
    grid-template-columns: 1fr;
    gap: 5vw;
    max-width: 90vw;
    margin: 0 auto;
  }

  .feature-box-item {
    padding: 6vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
  }

  .feature-box-item p {
    font-size: 3vw;
  }

  .heart-icon {
    width: 10vw;
    height: 10vw;
    margin-bottom: 3vh;
  }

  /* How it Works Section */
  .how-it-works-section-unique {
    padding: 8vh 4vw;
    width: 100%;
  }
  .step-number-circle {
    font-size: 2vw;
  }

  .container-how-it-works {
    max-width: 100%;
    margin: 0 auto;
  }

  .how-it-works-heading {
    font-size: 5vw;
    font-weight: bold;
    margin-bottom: 4vh;
  }

  .row-how-it-works {
    display: flex;
    flex-direction: column;
    gap: 5vw;
  }

  .step-box {
    padding: 6vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
    width: 100%;
  }

  .step-title {
    font-size: 5vw;
  }

  .step-description {
    font-size: 3vw;
    line-height: 1.6;
    padding-left: 0.5vw;
  }

  /* Make the step number circle larger and more prominent */
  .step-number-circle {
    font-size: 5vw; /* Increase the size of the number */
    background-color: #0b2a44; /* Add a background color */
    color: white;
    width: 8vw; /* Adjust the size of the circle */
    height: 8vw;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4vh; /* Add spacing below the circle */
    box-shadow: 0 1vw 2vw rgba(0, 0, 0, 0.1);
  }

  /* Trusted Section */
  .trusted-section-unique {
    padding: 8vh 4vw;
    width: 100%;
  }

  .container-trusted {
    max-width: 100%;
    margin: 0 auto;
  }

  .trusted-title {
    font-size: 5vw;
    margin-bottom: 5vh;
    font-weight: bold;
  }

  /* Slider container without wrapping */
  .slider-container {
    display: flex;
    gap: 5vw;
    padding: 5vw;
    width: 100%;
    scrollbar-width: none; /* Hide scrollbar in Firefox */
  }

  /* Hide scrollbar for WebKit browsers (Chrome, Safari, Edge) */
  .slider-container::-webkit-scrollbar {
    display: none;
  }

  /* Slider items */
  .slider-item {
    display: inline-block; /* Ensure items stay in a single line */
    width: 25vw; /* Adjust width to fit more items in a single line */
    padding: 2vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
    flex-shrink: 0; /* Prevent items from shrinking */
  }

  /* Image inside each slider item */
  .slider-item img.img-fluid-trusted {
    width: 100%;
    height: auto;
    border-radius: 2vw; /* Optional rounding for images */
    object-fit: contain; /* Ensure full logo visibility without cropping */
  }

  /* Username styling */
  .trusted-username {
    font-size: 4vw;
    padding: 3vh;
    border-radius: 2vw;
    text-align: center;
  }
}
@media (min-width: 951px) and (max-width: 970px) {
  /* General Adjustments */
  body {
    text-align: left;
    width: 100%;
  }

  .hero-section-unique {
    background-image: url("/images/backgrounds/linxhub-image-background.svg");
    background-color: #c0ade1;
    background-size: cover;
    background-position: right center;
    padding-top: 22.08vh; /* 40px */
    margin-top: -20vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    height: 160%;
  }

  .container-hero,
  .row-hero {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .text-content-hero {
    width: 100%;
    text-align: left;
    margin-top: -2.5%;
    margin-left: -4vw;
  }

  .hero-heading {
    font-size: 9.5vw;
    padding-top: -1vh;
    width: 110%;
    text-align: left;
  }

  .hero-links-text,
  .domain-box-hero {
    font-size: 7.7vw;
    text-align: left;
    width: 100%;
    margin-top: -1.5vh;
  }

  /* Parent container for prefix, input, and button */
  /* Parent container for the input group */
  .input-group-hero {
    display: flex;
    flex-direction: column; /* Stack the input row and button vertically */
    align-items: center;
    width: 100%;
    margin-bottom: 2vh;
  }

  /* Container for prefix and input field */
  .input-group-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%; /* Adjust the width as needed */
    margin-bottom: 2vh;
    gap: 0;
  }

  /* Prefix text styling */
  .input-group-text-hero {
    font-size: 5.5vw;
    padding: 2.5vh;
    border-radius: 2vw 0 0 2vw;
    text-align: center;
    flex-shrink: 0; /* Prevent shrinking */
    margin-right: 40vw;
  }

  /* Input field styling */
  .username-input-field {
    font-size: 5.5vw;
    padding: 2.5vh;
    border-radius: 0 2vw 2vw 0;
    padding-left: 1.5vw;
    flex-grow: 1; /* Allow input to take remaining space */
    border-left: none; /* Remove border between prefix and input */
    width: 60%;
    margin-left: 36vw;
    margin-top: -22.3vh;
  }

  /* Button container */
  .input-group-append-hero {
    width: 80%;
    display: flex;
    justify-content: center;
    margin-top: 2vh;
  }

  /* Button styling */
  .create-link-btn-hero {
    font-size: 5.5vw;
    padding: 2.5vh;
    width: 100%;
    border-radius: 5vw;
  }

  .create-link-btn-hero:hover {
    background-color: #75eeec;
  }

  .create-link-btn-hero:hover {
    background-color: #75eeec;
  }

  /* Error Message Styling */
  .text-danger-hero {
    color: #dc3545;
    font-size: 4vw;
    margin-top: 1vh;
  }

  /* Image Content */
  .image-content-hero {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 2vh;
  }

  /* Mobile-Only Hero Section */
  .hero-section-unique-mobile {
    background-image: url("/images/backgrounds/1080_1920.svg");
    background-color: #c0ade1; /* Color appears behind the SVG */
    background-repeat: no-repeat;
    background-position: center Top; /* Center the SVG horizontally, align it to the top */
    padding-top: 4vh;
    margin-top: -10vh;
    display: flex;
    height: 140vh;
    align-items: center;
    justify-content: center;
    margin-bottom: -12.8vh;
  }

  /* Templates Section */
  .templates-section-unique,
  .container-templates,
  .row-templates {
    flex-direction: column;
    align-items: center;
    padding: 1.5vh 0;
    width: 100%;
    overflow: hidden;
  }

  .image-content-templates {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .text-content-templates {
    width: 100%;
    padding: 2vw;
    text-align: left;
  }

  .text-content-templates h2.template-heading {
    font-size: 5vw;
  }

  .text-content-templates p.template-description {
    font-size: 3vw;
    padding-left: 0.5vw;
    line-height: 1.6;
  }

  .create-link-btn-templates {
    font-size: 5.5vw;
    padding: 2.5vh;
    width: 70%;
    border-radius: 5vw;
    margin-left: 15vw;
  }

  /* Features Section */
  .features-section-unique {
    padding: 8vh 4vw;
  }

  .section-title-features {
    font-size: 5vw;
    margin-bottom: 4vh;
    font-weight: bold;
  }

  .feature-boxes-container {
    grid-template-columns: 1fr;
    gap: 5vw;
    max-width: 90vw;
    margin: 0 auto;
  }

  .feature-box-item {
    padding: 6vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
  }

  .feature-box-item p {
    font-size: 3vw;
  }

  .heart-icon {
    width: 10vw;
    height: 10vw;
    margin-bottom: 3vh;
  }

  /* How it Works Section */
  .how-it-works-section-unique {
    padding: 8vh 4vw;
    width: 100%;
  }
  .step-number-circle {
    font-size: 2vw;
  }

  .container-how-it-works {
    max-width: 100%;
    margin: 0 auto;
  }

  .how-it-works-heading {
    font-size: 5vw;
    font-weight: bold;
    margin-bottom: 4vh;
  }

  .row-how-it-works {
    display: flex;
    flex-direction: column;
    gap: 5vw;
  }

  .step-box {
    padding: 6vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
    width: 100%;
  }

  .step-title {
    font-size: 5vw;
  }

  .step-description {
    font-size: 3vw;
    line-height: 1.6;
    padding-left: 0.5vw;
  }

  /* Make the step number circle larger and more prominent */
  .step-number-circle {
    font-size: 5vw; /* Increase the size of the number */
    background-color: #0b2a44; /* Add a background color */
    color: white;
    width: 8vw; /* Adjust the size of the circle */
    height: 8vw;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4vh; /* Add spacing below the circle */
    box-shadow: 0 1vw 2vw rgba(0, 0, 0, 0.1);
  }

  /* Trusted Section */
  .trusted-section-unique {
    padding: 8vh 4vw;
    width: 100%;
  }

  .container-trusted {
    max-width: 100%;
    margin: 0 auto;
  }

  .trusted-title {
    font-size: 5vw;
    margin-bottom: 5vh;
    font-weight: bold;
  }

  /* Slider container without wrapping */
  .slider-container {
    display: flex;
    gap: 5vw;
    padding: 5vw;
    width: 100%;
    scrollbar-width: none; /* Hide scrollbar in Firefox */
  }

  /* Hide scrollbar for WebKit browsers (Chrome, Safari, Edge) */
  .slider-container::-webkit-scrollbar {
    display: none;
  }

  /* Slider items */
  .slider-item {
    display: inline-block; /* Ensure items stay in a single line */
    width: 25vw; /* Adjust width to fit more items in a single line */
    padding: 2vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
    flex-shrink: 0; /* Prevent items from shrinking */
  }

  /* Image inside each slider item */
  .slider-item img.img-fluid-trusted {
    width: 100%;
    height: auto;
    border-radius: 2vw; /* Optional rounding for images */
    object-fit: contain; /* Ensure full logo visibility without cropping */
  }

  /* Username styling */
  .trusted-username {
    font-size: 4vw;
    padding: 3vh;
    border-radius: 2vw;
    text-align: center;
  }
}
@media (min-width: 971px) and (max-width: 990px) {
  /* General Adjustments */
  body {
    text-align: left;
    width: 100%;
  }

  .hero-section-unique {
    background-image: url("/images/backgrounds/linxhub-image-background.svg");
    background-color: #c0ade1;
    background-size: cover;
    background-position: right center;
    padding-top: 22.08vh; /* 40px */
    margin-top: -20vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    height: 160%;
  }

  .container-hero,
  .row-hero {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .text-content-hero {
    width: 100%;
    text-align: left;
    margin-top: -2.5%;
    margin-left: -4vw;
  }

  .hero-heading {
    font-size: 9.5vw;
    padding-top: -1vh;
    width: 110%;
    text-align: left;
  }

  .hero-links-text,
  .domain-box-hero {
    font-size: 7.7vw;
    text-align: left;
    width: 100%;
    margin-top: -1.5vh;
  }

  /* Parent container for prefix, input, and button */
  /* Parent container for the input group */
  .input-group-hero {
    display: flex;
    flex-direction: column; /* Stack the input row and button vertically */
    align-items: center;
    width: 100%;
    margin-bottom: 2vh;
  }

  /* Container for prefix and input field */
  .input-group-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%; /* Adjust the width as needed */
    margin-bottom: 2vh;
    gap: 0;
  }

  /* Prefix text styling */
  .input-group-text-hero {
    font-size: 5.5vw;
    padding: 2.5vh;
    border-radius: 2vw 0 0 2vw;
    text-align: center;
    flex-shrink: 0; /* Prevent shrinking */
    margin-right: 40vw;
  }

  /* Input field styling */
  .username-input-field {
    font-size: 5.5vw;
    padding: 2.5vh;
    border-radius: 0 2vw 2vw 0;
    padding-left: 1.5vw;
    flex-grow: 1; /* Allow input to take remaining space */
    border-left: none; /* Remove border between prefix and input */
    width: 60%;
    margin-left: 35vw;
    margin-top: -22.7vh;
  }

  /* Button container */
  .input-group-append-hero {
    width: 80%;
    display: flex;
    justify-content: center;
    margin-top: 2vh;
  }

  /* Button styling */
  .create-link-btn-hero {
    font-size: 5.5vw;
    padding: 2.5vh;
    width: 100%;
    border-radius: 5vw;
  }

  .create-link-btn-hero:hover {
    background-color: #75eeec;
  }

  .create-link-btn-hero:hover {
    background-color: #75eeec;
  }

  /* Error Message Styling */
  .text-danger-hero {
    color: #dc3545;
    font-size: 4vw;
    margin-top: 1vh;
  }

  /* Image Content */
  .image-content-hero {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 2vh;
  }

  /* Mobile-Only Hero Section */
  .hero-section-unique-mobile {
    background-image: url("/images/backgrounds/1080_1920.svg");
    background-color: #c0ade1; /* Color appears behind the SVG */
    background-repeat: no-repeat;
    background-position: center Top; /* Center the SVG horizontally, align it to the top */
    padding-top: 4vh;
    margin-top: -10vh;
    display: flex;
    height: 140vh;
    align-items: center;
    justify-content: center;
    margin-bottom: -13vh;
  }

  /* Templates Section */
  .templates-section-unique,
  .container-templates,
  .row-templates {
    flex-direction: column;
    align-items: center;
    padding: 1.5vh 0;
    width: 100%;
    overflow: hidden;
  }

  .image-content-templates {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .text-content-templates {
    width: 100%;
    padding: 2vw;
    text-align: left;
  }

  .text-content-templates h2.template-heading {
    font-size: 5vw;
  }

  .text-content-templates p.template-description {
    font-size: 3vw;
    padding-left: 0.5vw;
    line-height: 1.6;
  }

  .create-link-btn-templates {
    font-size: 5.5vw;
    padding: 2.5vh;
    width: 70%;
    border-radius: 5vw;
    margin-left: 15vw;
  }

  /* Features Section */
  .features-section-unique {
    padding: 8vh 4vw;
  }

  .section-title-features {
    font-size: 5vw;
    margin-bottom: 4vh;
    font-weight: bold;
  }

  .feature-boxes-container {
    grid-template-columns: 1fr;
    gap: 5vw;
    max-width: 90vw;
    margin: 0 auto;
  }

  .feature-box-item {
    padding: 6vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
  }

  .feature-box-item p {
    font-size: 3vw;
  }

  .heart-icon {
    width: 10vw;
    height: 10vw;
    margin-bottom: 3vh;
  }

  /* How it Works Section */
  .how-it-works-section-unique {
    padding: 8vh 4vw;
    width: 100%;
  }
  .step-number-circle {
    font-size: 2vw;
  }

  .container-how-it-works {
    max-width: 100%;
    margin: 0 auto;
  }

  .how-it-works-heading {
    font-size: 5vw;
    font-weight: bold;
    margin-bottom: 4vh;
  }

  .row-how-it-works {
    display: flex;
    flex-direction: column;
    gap: 5vw;
  }

  .step-box {
    padding: 6vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
    width: 100%;
  }

  .step-title {
    font-size: 5vw;
  }

  .step-description {
    font-size: 3vw;
    line-height: 1.6;
    padding-left: 0.5vw;
  }

  /* Make the step number circle larger and more prominent */
  .step-number-circle {
    font-size: 5vw; /* Increase the size of the number */
    background-color: #0b2a44; /* Add a background color */
    color: white;
    width: 8vw; /* Adjust the size of the circle */
    height: 8vw;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4vh; /* Add spacing below the circle */
    box-shadow: 0 1vw 2vw rgba(0, 0, 0, 0.1);
  }

  /* Trusted Section */
  .trusted-section-unique {
    padding: 8vh 4vw;
    width: 100%;
  }

  .container-trusted {
    max-width: 100%;
    margin: 0 auto;
  }

  .trusted-title {
    font-size: 5vw;
    margin-bottom: 5vh;
    font-weight: bold;
  }

  /* Slider container without wrapping */
  .slider-container {
    display: flex;
    gap: 5vw;
    padding: 5vw;
    width: 100%;
    scrollbar-width: none; /* Hide scrollbar in Firefox */
  }

  /* Hide scrollbar for WebKit browsers (Chrome, Safari, Edge) */
  .slider-container::-webkit-scrollbar {
    display: none;
  }

  /* Slider items */
  .slider-item {
    display: inline-block; /* Ensure items stay in a single line */
    width: 25vw; /* Adjust width to fit more items in a single line */
    padding: 2vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
    flex-shrink: 0; /* Prevent items from shrinking */
  }

  /* Image inside each slider item */
  .slider-item img.img-fluid-trusted {
    width: 100%;
    height: auto;
    border-radius: 2vw; /* Optional rounding for images */
    object-fit: contain; /* Ensure full logo visibility without cropping */
  }

  /* Username styling */
  .trusted-username {
    font-size: 4vw;
    padding: 3vh;
    border-radius: 2vw;
    text-align: center;
  }
}

@media (min-width: 991px) and (max-width: 1023px) {
  /* General Adjustments */
  body {
    text-align: left;
    width: 100%;
  }

  .hero-section-unique {
    background-image: url("/images/backgrounds/linxhub-image-background.svg");
    background-color: #c0ade1;
    background-size: cover;
    background-position: right center;
    padding-top: 22.08vh; /* 40px */
    margin-top: -20vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    height: 160%;
  }

  .container-hero,
  .row-hero {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .text-content-hero {
    width: 100%;
    text-align: left;
    margin-top: 3.5%;
    margin-left: -4vw;
  }

  .hero-heading {
    font-size: 9.5vw;
    padding-top: -1vh;
    width: 110%;
    text-align: left;
  }

  .hero-links-text,
  .domain-box-hero {
    font-size: 7.7vw;
    text-align: left;
    width: 100%;
    margin-top: -1.5vh;
  }

  /* Parent container for prefix, input, and button */
  /* Parent container for the input group */
  .input-group-hero {
    display: flex;
    flex-direction: column; /* Stack the input row and button vertically */
    align-items: center;
    width: 100%;
    margin-bottom: 2vh;
  }

  /* Container for prefix and input field */
  .input-group-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%; /* Adjust the width as needed */
    margin-bottom: 2vh;
    gap: 0;
  }

  /* Prefix text styling */
  .input-group-text-hero {
    font-size: 5.5vw;
    padding: 2.5vh;
    border-radius: 2vw 0 0 2vw;
    text-align: center;
    flex-shrink: 0; /* Prevent shrinking */
    margin-right: 40vw;
  }

  /* Input field styling */
  .username-input-field {
    font-size: 5.5vw;
    padding: 2.5vh;
    border-radius: 0 2vw 2vw 0;
    padding-left: 1.5vw;
    flex-grow: 1; /* Allow input to take remaining space */
    border-left: none; /* Remove border between prefix and input */
    width: 60%;
    margin-left: 36vw;
    margin-top: -17.1vh;
  }

  /* Button container */
  .input-group-append-hero {
    width: 80%;
    display: flex;
    justify-content: center;
    margin-top: 2vh;
  }

  /* Button styling */
  .create-link-btn-hero {
    font-size: 5.5vw;
    padding: 2.5vh;
    width: 100%;
    border-radius: 5vw;
  }

  .create-link-btn-hero:hover {
    background-color: #75eeec;
  }

  .create-link-btn-hero:hover {
    background-color: #75eeec;
  }

  /* Error Message Styling */
  .text-danger-hero {
    color: #dc3545;
    font-size: 4vw;
    margin-top: 1vh;
  }

  /* Image Content */
  .image-content-hero {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 2vh;
  }

  /* Mobile-Only Hero Section */
  .hero-section-unique-mobile {
    background-image: url("/images/backgrounds/1080_1920.svg");
    background-color: #c0ade1; /* Color appears behind the SVG */
    background-repeat: no-repeat;
    background-position: center Top; /* Center the SVG horizontally, align it to the top */
    padding-top: 4vh;
    margin-top: -10vh;
    display: flex;
    height: 140vh;
    align-items: center;
    justify-content: center;
    margin-bottom: -13vh;
  }

  /* Templates Section */
  .templates-section-unique,
  .container-templates,
  .row-templates {
    flex-direction: column;
    align-items: center;
    padding: 1.5vh 0;
    width: 100%;
    overflow: hidden;
  }

  .image-content-templates {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .text-content-templates {
    width: 100%;
    padding: 2vw;
    text-align: left;
  }

  .text-content-templates h2.template-heading {
    font-size: 5vw;
  }

  .text-content-templates p.template-description {
    font-size: 3vw;
    padding-left: 0.5vw;
    line-height: 1.6;
  }

  .create-link-btn-templates {
    font-size: 5.5vw;
    padding: 2.5vh;
    width: 70%;
    border-radius: 5vw;
    margin-left: 15vw;
  }

  /* Features Section */
  .features-section-unique {
    padding: 8vh 4vw;
  }

  .section-title-features {
    font-size: 5vw;
    margin-bottom: 4vh;
    font-weight: bold;
  }

  .feature-boxes-container {
    grid-template-columns: 1fr;
    gap: 5vw;
    max-width: 90vw;
    margin: 0 auto;
  }

  .feature-box-item {
    padding: 6vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
  }

  .feature-box-item p {
    font-size: 3vw;
  }

  .heart-icon {
    width: 10vw;
    height: 10vw;
    margin-bottom: 3vh;
  }

  /* How it Works Section */
  .how-it-works-section-unique {
    padding: 8vh 4vw;
    width: 100%;
  }
  .step-number-circle {
    font-size: 2vw;
  }

  .container-how-it-works {
    max-width: 100%;
    margin: 0 auto;
  }

  .how-it-works-heading {
    font-size: 5vw;
    font-weight: bold;
    margin-bottom: 4vh;
  }

  .row-how-it-works {
    display: flex;
    flex-direction: column;
    gap: 5vw;
  }

  .step-box {
    padding: 6vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
    width: 100%;
  }

  .step-title {
    font-size: 5vw;
  }

  .step-description {
    font-size: 3vw;
    line-height: 1.6;
    padding-left: 0.5vw;
  }

  /* Make the step number circle larger and more prominent */
  .step-number-circle {
    font-size: 5vw; /* Increase the size of the number */
    background-color: #0b2a44; /* Add a background color */
    color: white;
    width: 8vw; /* Adjust the size of the circle */
    height: 8vw;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4vh; /* Add spacing below the circle */
    box-shadow: 0 1vw 2vw rgba(0, 0, 0, 0.1);
  }

  /* Trusted Section */
  .trusted-section-unique {
    padding: 8vh 4vw;
    width: 100%;
  }

  .container-trusted {
    max-width: 100%;
    margin: 0 auto;
  }

  .trusted-title {
    font-size: 5vw;
    margin-bottom: 5vh;
    font-weight: bold;
  }

  /* Slider container without wrapping */
  .slider-container {
    display: flex;
    gap: 5vw;
    padding: 5vw;
    width: 100%;
    scrollbar-width: none; /* Hide scrollbar in Firefox */
  }

  /* Hide scrollbar for WebKit browsers (Chrome, Safari, Edge) */
  .slider-container::-webkit-scrollbar {
    display: none;
  }

  /* Slider items */
  .slider-item {
    display: inline-block; /* Ensure items stay in a single line */
    width: 25vw; /* Adjust width to fit more items in a single line */
    padding: 2vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
    flex-shrink: 0; /* Prevent items from shrinking */
  }

  /* Image inside each slider item */
  .slider-item img.img-fluid-trusted {
    width: 100%;
    height: auto;
    border-radius: 2vw; /* Optional rounding for images */
    object-fit: contain; /* Ensure full logo visibility without cropping */
  }

  /* Username styling */
  .trusted-username {
    font-size: 4vw;
    padding: 3vh;
    border-radius: 2vw;
    text-align: center;
  }
}

@media (min-width: 1024px) and (max-width: 1028px) {
  /* General Adjustments */
  body {
    text-align: left;
    width: 100%;
  }

  .hero-section-unique {
    background-image: url("/images/backgrounds/linxhub-image-background.svg");
    background-color: #c0ade1;
    background-size: cover;
    background-position: right center;
    padding-top: 22.08vh; /* 40px */
    margin-top: -20vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    height: 160%;
  }

  .container-hero,
  .row-hero {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .text-content-hero {
    width: 100%;
    text-align: left;
    margin-top: -2.5%;
    margin-left: -4vw;
  }

  .hero-heading {
    font-size: 9.5vw;
    padding-top: 6vh;
    width: 110%;
    text-align: left;
  }
  .sub-hero-heading {
    font-size: 4.8vw;
    /* 92px */
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.04vh;
    /* 20px */
    display: inline-block;
  }

  .hero-links-text,
  .domain-box-hero {
    font-size: 7.7vw;
    text-align: left;
    width: 100%;
    margin-top: -1.5vh;
  }

  /* Parent container for prefix, input, and button */
  /* Parent container for the input group */
  .input-group-hero {
    display: flex;
    flex-direction: column; /* Stack the input row and button vertically */
    align-items: center;
    width: 100%;
    margin-bottom: 2vh;
  }

  /* Container for prefix and input field */
  .input-group-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%; /* Adjust the width as needed */
    margin-bottom: 2vh;
    gap: 0;
  }

  /* Prefix text styling */
  .input-group-text-hero {
    font-size: 5.5vw;
    padding: 2.5vh;
    border-radius: 2vw 0 0 2vw;
    text-align: center;
    flex-shrink: 0; /* Prevent shrinking */
    margin-right: 40vw;
  }

  /* Input field styling */
  .username-input-field {
    font-size: 5.5vw;
    padding: 2.5vh;
    border-radius: 0 2vw 2vw 0;
    padding-left: 1.5vw;
    flex-grow: 1; /* Allow input to take remaining space */
    border-left: none; /* Remove border between prefix and input */
    width: 60%;
    margin-left: 35.3vw;
    margin-top: -11.8vh;
  }

  /* Button container */
  .input-group-append-hero {
    width: 80%;
    display: flex;
    justify-content: center;
    margin-top: 2vh;
  }

  /* Button styling */
  .create-link-btn-hero {
    font-size: 5.5vw;
    padding: 2.5vh;
    width: 100%;
    border-radius: 5vw;
  }

  .create-link-btn-hero:hover {
    background-color: #75eeec;
  }

  .create-link-btn-hero:hover {
    background-color: #75eeec;
  }

  /* Error Message Styling */
  .text-danger-hero {
    color: #dc3545;
    font-size: 4vw;
    margin-top: 1vh;
  }

  /* Image Content */
  .image-content-hero {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 2vh;
  }

  /* Mobile-Only Hero Section */
  .hero-section-unique-mobile {
    background-image: url("/images/backgrounds/1080_1920.svg");
    background-color: #c0ade1; /* Color appears behind the SVG */
    background-repeat: no-repeat;
    background-position: center Top; /* Center the SVG horizontally, align it to the top */
    padding-top: 4vh;
    margin-top: -10vh;
    display: flex;
    height: 140vh;
    align-items: center;
    justify-content: center;
    margin-bottom: -13vh;
  }

  /* Templates Section */
  .templates-section-unique,
  .container-templates,
  .row-templates {
    flex-direction: column;
    align-items: center;
    padding: 1.5vh 0;
    width: 100%;
    overflow: hidden;
  }

  .image-content-templates {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .text-content-templates {
    width: 100%;
    padding: 2vw;
    text-align: left;
  }

  .text-content-templates h2.template-heading {
    font-size: 5vw;
  }

  .text-content-templates p.template-description {
    font-size: 3vw;
    padding-left: 0.5vw;
    line-height: 1.6;
  }

  .create-link-btn-templates {
    font-size: 5.5vw;
    padding: 2.5vh;
    width: 70%;
    border-radius: 5vw;
    margin-left: 15vw;
  }

  /* Features Section */
  .features-section-unique {
    padding: 8vh 4vw;
  }

  .section-title-features {
    font-size: 5vw;
    margin-bottom: 4vh;
    font-weight: bold;
  }

  .feature-boxes-container {
    grid-template-columns: 1fr;
    gap: 5vw;
    max-width: 90vw;
    margin: 0 auto;
  }

  .feature-box-item {
    padding: 6vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
  }

  .feature-box-item p {
    font-size: 3vw;
  }

  .heart-icon {
    width: 10vw;
    height: 10vw;
    margin-bottom: 3vh;
  }

  /* How it Works Section */
  .how-it-works-section-unique {
    padding: 8vh 4vw;
    width: 100%;
  }
  .step-number-circle {
    font-size: 2vw;
  }

  .container-how-it-works {
    max-width: 100%;
    margin: 0 auto;
  }

  .how-it-works-heading {
    font-size: 5vw;
    font-weight: bold;
    margin-bottom: 4vh;
  }

  .row-how-it-works {
    display: flex;
    flex-direction: column;
    gap: 5vw;
  }

  .step-box {
    padding: 6vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
    width: 100%;
  }

  .step-title {
    font-size: 5vw;
  }

  .step-description {
    font-size: 3vw;
    line-height: 1.6;
    padding-left: 0.5vw;
  }

  /* Make the step number circle larger and more prominent */
  .step-number-circle {
    font-size: 5vw; /* Increase the size of the number */
    background-color: #0b2a44; /* Add a background color */
    color: white;
    width: 8vw; /* Adjust the size of the circle */
    height: 8vw;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4vh; /* Add spacing below the circle */
    box-shadow: 0 1vw 2vw rgba(0, 0, 0, 0.1);
  }

  /* Trusted Section */
  .trusted-section-unique {
    padding: 8vh 4vw;
    width: 100%;
  }

  .container-trusted {
    max-width: 100%;
    margin: 0 auto;
  }

  .trusted-title {
    font-size: 5vw;
    margin-bottom: 5vh;
    font-weight: bold;
  }

  /* Slider container without wrapping */
  .slider-container {
    display: flex;
    gap: 5vw;
    padding: 5vw;
    width: 100%;
    scrollbar-width: none; /* Hide scrollbar in Firefox */
  }

  /* Hide scrollbar for WebKit browsers (Chrome, Safari, Edge) */
  .slider-container::-webkit-scrollbar {
    display: none;
  }

  /* Slider items */
  .slider-item {
    display: inline-block; /* Ensure items stay in a single line */
    width: 25vw; /* Adjust width to fit more items in a single line */
    padding: 2vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
    flex-shrink: 0; /* Prevent items from shrinking */
  }

  /* Image inside each slider item */
  .slider-item img.img-fluid-trusted {
    width: 100%;
    height: auto;
    border-radius: 2vw; /* Optional rounding for images */
    object-fit: contain; /* Ensure full logo visibility without cropping */
  }

  /* Username styling */
  .trusted-username {
    font-size: 4vw;
    padding: 3vh;
    border-radius: 2vw;
    text-align: center;
  }
}

@media (min-width: 1029px) and (max-width: 1088px) {
  /* General Adjustments */
  body {
    text-align: left;
    width: 100%;
  }

  .hero-section-unique {
    background-image: url("/images/backgrounds/linxhub-image-background.svg");
    background-color: #c0ade1;
    background-size: cover;
    background-position: right center;
    padding-top: 22.08vh; /* 40px */
    margin-top: -20vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    height: 160%;
  }

  .container-hero,
  .row-hero {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .text-content-hero {
    width: 100%;
    text-align: left;
    margin-top: -2.5%;
    margin-left: -4vw;
  }

  .hero-heading {
    font-size: 9.5vw;
    padding-top: -1vh;
    width: 110%;
    text-align: left;
  }

  .hero-links-text,
  .domain-box-hero {
    font-size: 7.7vw;
    text-align: left;
    width: 100%;
    margin-top: -1.5vh;
  }

  /* Parent container for prefix, input, and button */
  /* Parent container for the input group */
  .input-group-hero {
    display: flex;
    flex-direction: column; /* Stack the input row and button vertically */
    align-items: center;
    width: 100%;
    margin-bottom: 2vh;
  }

  /* Container for prefix and input field */
  .input-group-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%; /* Adjust the width as needed */
    margin-bottom: 2vh;
    gap: 0;
  }

  /* Prefix text styling */
  .input-group-text-hero {
    font-size: 5.5vw;
    padding: 2.5vh;
    border-radius: 2vw 0 0 2vw;
    text-align: center;
    flex-shrink: 0; /* Prevent shrinking */
    margin-right: 40vw;
  }

  /* Input field styling */
  .username-input-field {
    font-size: 5.5vw;
    padding: 2.5vh;
    border-radius: 0 2vw 2vw 0;
    padding-left: 1.5vw;
    flex-grow: 1; /* Allow input to take remaining space */
    border-left: none; /* Remove border between prefix and input */
    width: 60%;
    margin-left: 35.3vw;
    margin-top: -24.8vh;
  }

  /* Button container */
  .input-group-append-hero {
    width: 80%;
    display: flex;
    justify-content: center;
    margin-top: 2vh;
  }

  /* Button styling */
  .create-link-btn-hero {
    font-size: 5.5vw;
    padding: 2.5vh;
    width: 100%;
    border-radius: 5vw;
  }

  .create-link-btn-hero:hover {
    background-color: #75eeec;
  }

  .create-link-btn-hero:hover {
    background-color: #75eeec;
  }

  /* Error Message Styling */
  .text-danger-hero {
    color: #dc3545;
    font-size: 4vw;
    margin-top: 1vh;
  }

  /* Image Content */
  .image-content-hero {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 2vh;
  }

  /* Mobile-Only Hero Section */
  .hero-section-unique-mobile {
    background-image: url("/images/backgrounds/1080_1920.svg");
    background-color: #c0ade1; /* Color appears behind the SVG */
    background-repeat: no-repeat;
    background-position: center Top; /* Center the SVG horizontally, align it to the top */
    padding-top: 4vh;
    margin-top: -10vh;
    display: flex;
    height: 140vh;
    align-items: center;
    justify-content: center;
    margin-bottom: -13vh;
  }

  /* Templates Section */
  .templates-section-unique,
  .container-templates,
  .row-templates {
    flex-direction: column;
    align-items: center;
    padding: 1.5vh 0;
    width: 100%;
    overflow: hidden;
  }

  .image-content-templates {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .text-content-templates {
    width: 100%;
    padding: 2vw;
    text-align: left;
  }

  .text-content-templates h2.template-heading {
    font-size: 5vw;
  }

  .text-content-templates p.template-description {
    font-size: 3vw;
    padding-left: 0.5vw;
    line-height: 1.6;
  }

  .create-link-btn-templates {
    font-size: 5.5vw;
    padding: 2.5vh;
    width: 70%;
    border-radius: 5vw;
    margin-left: 15vw;
  }

  /* Features Section */
  .features-section-unique {
    padding: 8vh 4vw;
  }

  .section-title-features {
    font-size: 5vw;
    margin-bottom: 4vh;
    font-weight: bold;
  }

  .feature-boxes-container {
    grid-template-columns: 1fr;
    gap: 5vw;
    max-width: 90vw;
    margin: 0 auto;
  }

  .feature-box-item {
    padding: 6vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
  }

  .feature-box-item p {
    font-size: 3vw;
  }

  .heart-icon {
    width: 10vw;
    height: 10vw;
    margin-bottom: 3vh;
  }

  /* How it Works Section */
  .how-it-works-section-unique {
    padding: 8vh 4vw;
    width: 100%;
  }
  .step-number-circle {
    font-size: 2vw;
  }

  .container-how-it-works {
    max-width: 100%;
    margin: 0 auto;
  }

  .how-it-works-heading {
    font-size: 5vw;
    font-weight: bold;
    margin-bottom: 4vh;
  }

  .row-how-it-works {
    display: flex;
    flex-direction: column;
    gap: 5vw;
  }

  .step-box {
    padding: 6vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
    width: 100%;
  }

  .step-title {
    font-size: 5vw;
  }

  .step-description {
    font-size: 3vw;
    line-height: 1.6;
    padding-left: 0.5vw;
  }

  /* Make the step number circle larger and more prominent */
  .step-number-circle {
    font-size: 5vw; /* Increase the size of the number */
    background-color: #0b2a44; /* Add a background color */
    color: white;
    width: 8vw; /* Adjust the size of the circle */
    height: 8vw;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4vh; /* Add spacing below the circle */
    box-shadow: 0 1vw 2vw rgba(0, 0, 0, 0.1);
  }

  /* Trusted Section */
  .trusted-section-unique {
    padding: 8vh 4vw;
    width: 100%;
  }

  .container-trusted {
    max-width: 100%;
    margin: 0 auto;
  }

  .trusted-title {
    font-size: 5vw;
    margin-bottom: 5vh;
    font-weight: bold;
  }

  /* Slider container without wrapping */
  .slider-container {
    display: flex;
    gap: 5vw;
    padding: 5vw;
    width: 100%;
    scrollbar-width: none; /* Hide scrollbar in Firefox */
  }

  /* Hide scrollbar for WebKit browsers (Chrome, Safari, Edge) */
  .slider-container::-webkit-scrollbar {
    display: none;
  }

  /* Slider items */
  .slider-item {
    display: inline-block; /* Ensure items stay in a single line */
    width: 25vw; /* Adjust width to fit more items in a single line */
    padding: 2vw;
    border-radius: 3vw;
    box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.1);
    flex-shrink: 0; /* Prevent items from shrinking */
  }

  /* Image inside each slider item */
  .slider-item img.img-fluid-trusted {
    width: 100%;
    height: auto;
    border-radius: 2vw; /* Optional rounding for images */
    object-fit: contain; /* Ensure full logo visibility without cropping */
  }

  /* Username styling */
  .trusted-username {
    font-size: 4vw;
    padding: 3vh;
    border-radius: 2vw;
    text-align: center;
  }
}

@media (min-width: 1180px) and (max-width: 1181px) {
  *::before,
  *::after {
    box-sizing: border-box;
  }

  body {
    font-family: "Ebrima", sans-serif;
    background-color: #f8f9fa;
    line-height: 1.6;
  }

  /* Hero Section */
  /* Add these keyframes */
  @keyframes slideInFromRight {
    from {
      opacity: 0;
      transform: translateX(100%);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes slideInFromLeft {
    from {
      opacity: 0;
      transform: translateX(-100%);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* Ensure the sections are initially hidden */
  /* Add these to your CSS */
  .templates-section-unique,
  .vcard-section-unique,
  .dashboard-section-unique {
    opacity: 0;
    transform: translateY(50px);
    transition:
      opacity 0.8s ease-out,
      transform 0.8s ease-out;
  }

  .templates-section-unique.active,
  .vcard-section-unique.active,
  .dashboard-section-unique.active {
    opacity: 1;
    transform: translateY(0);
  }

  .hero-section-unique {
    /*background-image: url("/images/backgrounds/linxhub-image-background.svg");*/
    background-color: #a89ed4;
    background-size: cover;
    background-position: right center;
    padding-top: 22.08vh; /* 40px */
    margin-top: -18vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    height: 160%;
  }

  .container-hero {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .row-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .text-content-hero {
    width: 60%;
    margin-top: -7.5%;
    animation: slideInFromRight 1s ease-out forwards;
  }

  .hero-heading {
    font-size: 5.5vw;
    /* 92px */
    font-weight: bold;
    color: #1b2329;
    line-height: 1.2;
    margin-bottom: 1.04vh;
    /* 20px */
    display: inline-block;
  }
  .sub-hero-heading {
    font-size: 3.8vw;
    /* 92px */
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.04vh;
    /* 20px */
    display: inline-block;
  }

  /* Add animation for the sliding gradient */
  .sliding-gradient {
    background: linear-gradient(120deg, #fff, #fff, #fff, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: slideColor 3s infinite linear;
    background-size: 200% 200%;
  }

  /* Keyframes for the sliding effect 
@keyframes slideColor {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}*/

  .hero-heading .highlight-text {
    color: #fff;
  }

  .hero-links-text {
    font-size: 3vw; /* 30px */
    color: #fff;
    margin-top: 0.52vh; /* 10px */
    margin-bottom: -1.5vh;
  }

  .domain-box-hero {
    display: flex;
    align-items: center;
    font-size: 3vw; /* 30px */
    margin-bottom: 1.04vh; /* 20px */
  }

  .domain-prefix {
    color: #fff;
  }

  .domain-username {
    color: #fff;
  }

  .input-group-hero {
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 0.78vh; /* 15px */
  }

  .input-group-text-hero {
    background-color: #fff;
    border: 0.05vw solid #cccccc;
    border-radius: 5px 0 0 5px;
    padding: 0.73vh;
    font-size: 1.7vw;
    color: #000;
  }

  .username-input-field {
    flex: 1;
    padding: 0.73vh; /* 14px */
    font-size: 1.7vw; /* 25px */
    border: 0.05vw solid #ccc; /* 1px */
    width: 17vw;
  }

  .create-link-btn-hero {
    background-color: #0b2a44;
    color: white;
    padding: 1.1vh 0.04vw;
    border-radius: 0 0.26vw 0.26vw 0;
    font-size: 1.45vw;
    cursor: pointer;
    border: none;
    width: 15vw;
    border-radius: 0 5px 5px 0px;
  }

  .create-link-btn-hero:hover {
    background-color: #75eeec;
  }

  .image-content-hero {
    width: 50%;
    display: flex;
    padding-top: 0.5vh;
    justify-content: right;
    align-items: center;
    margin-bottom: 0.1vh;
    overflow: hidden;
    position: relative;
    animation: slideInFromLeft 1s ease-out forwards;
  }

  .img-fluid-hero {
    transition: transform 0.3s ease-out;
    transform-style: preserve-3d;
    will-change: transform;
  }

  .image-content-hero img.img-fluid-hero {
    max-width: 450px;
    height: 630px;
    object-fit: contain;
    margin-right: -2.5vw;
  }

  /* Add initial hidden state */
  .text-content-hero,
  .image-content-hero {
    opacity: 0;
  }

  /* Templates Section */
  /* Templates Section */
  .templates-section-unique {
    width: 100%;
    background-color: #ffffff;
    padding: 5.17vh 0; /* 80px */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    overflow: hidden; /* Ensure no overflow during animation */
  }

  .container-templates {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .row-templates {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  /* Image Container */
  .image-content-templates {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0; /* Initially hidden */
    transform: translateY(50px); /* Start 50px below */
    transition:
      opacity 0.8s ease-out,
      transform 0.8s ease-out;
  }

  .image-content-templates img.img-fluid-templates {
    max-width: 551px;
    height: 507px;
    object-fit: contain;
    transition: transform 0.3s ease-out; /* For mouse tracking */
    transform-style: preserve-3d;
    will-change: transform;
  }

  /* Text Container */
  .text-content-templates {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: left;
    opacity: 0; /* Initially hidden */
    transform: translateY(50px); /* Start 50px below */
    transition:
      opacity 0.8s ease-out,
      transform 0.8s ease-out;
  }

  .text-content-templates h2.template-heading {
    font-size: 2.8vw; /* 36px */
    font-weight: bold;
    color: #333;
    margin-bottom: 1.04vh; /* 20px */
  }

  .text-content-templates p.template-description {
    font-size: 1.4vw; /* 21px */
    line-height: 1.6;
    margin-bottom: 1.56vh; /* 30px */
    color: #555;
  }

  .create-link-btn-templates {
    background-color: #0b2a44;
    width: 50%;
    color: white;
    padding: 1.4vh 2.6vw; /* 12px 25px */
    font-size: 1.2vw; /* 18px */
    border-radius: 0.36vw; /* 5px */
    cursor: pointer;
    border: none;
  }

  .create-link-btn-templates:hover {
    background-color: #75eeec;
  }

  /* Active State for Animation */
  .templates-section-unique.active .image-content-templates,
  .templates-section-unique.active .text-content-templates {
    opacity: 1; /* Fully visible */
    transform: translateY(0); /* Move to final position */
  }

  /* vCard Section */
  .vcard-section-unique {
    width: 100%;
    background-color: #4f2996; /* Light gray background */
    padding: 5.17vh 0; /* 80px */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    overflow: hidden; /* Ensure no overflow during animation */
  }

  .container-vcard {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px; /* Adjust as needed */
    margin: 0 auto;
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .row-vcard {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  /* Text Content */
  .text-content-vcard {
    width: 50%;
    opacity: 0; /* Initially hidden */
    transform: translateY(50px); /* Start 50px below */
    transition:
      opacity 0.8s ease-out,
      transform 0.8s ease-out;
  }

  .vcard-heading {
    font-size: 2.8vw;
    font-weight: bold;
    color: #7ad5c4;
    margin-bottom: 1.04vh;
    width: 42vw;
    margin-left: -10vw;
  }

  .vcard-heading .highlight-text {
    color: #7ad5c4; /* Purple color for highlight */
  }

  .vcard-description {
    font-size: 1.8vw;
    font-weight: 500;
    color: #fff;
    margin-bottom: 1.04vh;
    width: 38vw;
    margin-left: -10vw;
  }

  .vcard-subtext {
    font-size: 1.4vw;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 2.08vh;
    width: 36vw;
    margin-left: -10vw;
  }

  .create-link-btn-vcard {
    background-color: #0b2a44;
    color: white;
    padding: 1.4vh 4.6vw;
    font-size: 1.2vw;
    border-radius: 0.36vw;
    cursor: pointer;
    border: 0.05vw solid #ccc;
    transition: background-color 0.3s ease;
    margin-left: -10vw;
  }

  .create-link-btn-vcard:hover {
    background-color: #75eeec; /* Darker purple on hover */
  }

  /* Image Content */
  .image-content-vcard {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0; /* Initially hidden */
    transform: translateY(50px); /* Start 50px below */
    transition:
      opacity 0.8s ease-out,
      transform 0.8s ease-out;
  }

  .img-fluid-vcard {
    max-width: 551px;
    height: 507px;
    object-fit: contain;
    transition: transform 0.5s ease-in-out;
    margin-left: 10vw;
  }

  /* Active State for Animation */
  .vcard-section-unique.active .text-content-vcard,
  .vcard-section-unique.active .image-content-vcard {
    opacity: 1; /* Fully visible */
    transform: translateY(0); /* Move to final position */
  }

  /* Image Zoom Effect on Hover */
  .image-content-vcard:hover .img-fluid-vcard {
    animation: zoomInOut 2s infinite ease-in-out;
  }

  @keyframes zoomInOut {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
  }

  /* Dashboard Section */
  .dashboard-section-unique {
    width: 100%;
    background-color: #ffffff; /* White background */
    padding: 5.17vh 0; /* 80px */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    overflow: hidden; /* Ensure no overflow during animation */
  }

  .container-dashboard {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px; /* Adjust as needed */
    margin: 0 auto;
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .row-dashboard {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  /* Text Content */
  .text-content-dashboard {
    width: 50%;
    opacity: 0; /* Initially hidden */
    transform: translateX(-100%); /* Start off-screen to the left */
    transition:
      opacity 0.8s ease-out,
      transform 0.8s ease-out;
  }

  .dashboard-heading {
    font-size: 2.8vw;
    font-weight: bold;
    color: #333;
    margin-bottom: 1.04vh;
    width: 36vw;
  }

  .dashboard-subheading {
    font-size: 2.1vw;
    font-weight: bold;
    color: #333;
    margin-bottom: 1.04vh;
    width: 36vw;
  }

  .dashboard-description {
    font-size: 1.4vw;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2.08vh;
    width: 35vw;
  }

  .create-link-btn-dashboard {
    background-color: #0b2a44;
    width: 74%;
    color: white;
    padding: 1.4vh 2.6vw;
    font-size: 1.2vw;
    border-radius: 0.36vw;
    cursor: pointer;
    border: none;
  }

  .create-link-btn-dashboard:hover {
    background-color: #75eeec; /* Darker purple on hover */
  }

  /* Image Content */
  .image-content-dashboard {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0; /* Initially hidden */
    transform: translateX(100%); /* Start off-screen to the right */
    transition:
      opacity 0.8s ease-out,
      transform 0.8s ease-out;
  }

  .img-fluid-dashboard {
    max-width: 551px;
    height: 507px;
    object-fit: contain;
    margin-left: -20vw;
  }

  /* Active State for Animation */
  .dashboard-section-unique.active .text-content-dashboard {
    opacity: 1; /* Fully visible */
    transform: translateX(0); /* Move to final position */
  }

  .dashboard-section-unique.active .image-content-dashboard {
    opacity: 1; /* Fully visible */
    transform: translateX(0); /* Move to final position */
  }

  /* Features Section */
  .features-section-unique {
    background-color: #4f2996;
    padding: 4.17vh 0; /* 80px */
  }

  .section-title-features {
    font-size: 2.86vw; /* 55px */
    color: #fff;
    text-align: center;
    margin-bottom: 2.08vh; /* 40px */
  }

  .feature-boxes-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.04vw; /* 20px */
    max-width: 62.5vw; /* 1200px */
    margin: 0 auto;
  }

  .feature-box-item {
    background-color: white;
    padding: 1.04vw 1vw;
    border-radius: 0.52vw;
    text-align: center;
    box-shadow: 0 0.21vw 0.42vw rgba(0, 0, 0, 0.1);
    transition:
      transform 0.3s ease,
      background-color 0.3s ease;
    align-items: center;
  }

  .feature-box-item:hover {
    transform: translateY(-0.26vw); /* 5px */
    background-color: #c0ade1;
  }

  .feature-box-item p {
    font-size: 1.4vw; /* 18px */
    color: #333;
    margin-top: 0.52vh; /* 10px */
  }

  .heart-icon {
    width: 2.4vw; /* 40px */
    height: 2.4vw; /* 40px */
    margin-bottom: 0.5vh; /* 10px */
  }

  /* How it Works Section */
  .how-it-works-section-unique {
    background-color: #fff;
    padding: 4.17vh 0; /* 80px */
  }

  .container-how-it-works {
    max-width: 62.5vw; /* 1200px */
    margin: 0 auto;
  }

  .how-it-works-heading {
    font-size: 2.86vw; /* 55px */
    text-align: center;
    margin-bottom: 2.08vh; /* 40px */
  }

  .row-how-it-works {
    display: flex;
    justify-content: space-between;
  }

  .step-box {
    position: relative;
    overflow: hidden; /* Ensure the border animation stays within the box */
    background-color: #fff;
    border: 0.1vw solid transparent; /* Transparent border initially */
    padding: 1.08vw; /* 20px */
    border-radius: 0.52vw; /* 10px */
    text-align: center;
    box-shadow: 0 0.21vw 0.42vw rgba(0, 0, 0, 0.1); /* 4px 8px */
    width: 40%;
    transition:
      transform 0.3s ease,
      box-shadow 0.3s ease;
  }

  .step-box:hover {
    transform: scale(1.05); /* Zoom effect */
    box-shadow: 0 0.42vw 0.83vw rgba(0, 0, 0, 0.2); /* Larger shadow on hover */
  }
  /* Animated Border */
  .step-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 0.1vw solid transparent;
    border-radius: 0.52vw; /* Match the box's border radius */
    z-index: -1;
    animation: borderAnimation 2s infinite linear;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .step-box:hover::before {
    opacity: 1; /* Show the animated border on hover */
  }

  .step-number-circle {
    background-color: #0b2a44;
    color: #fff;
    width: 2.8vw; /* 50px */
    height: 2.8vw; /* 50px */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 1.35vw; /* 24px */
    margin: 0 auto 1.04vh; /* 20px */
  }

  .step-title {
    font-size: 1.7vw; /* 25px */
    font-weight: bold;
    text-align: left;
    color: #333;
    margin-bottom: 0.78vh; /* 15px */
  }

  .step-description {
    font-size: 1.18vw; /* 20px */
    text-align: left;
    color: #666;
    line-height: 1.6;
  }

  @keyframes borderAnimation {
    0% {
      border-color: #772bb3;
      transform: scale(1);
    }
    25% {
      border-color: #0b2a44;
    }
    50% {
      border-color: #75eeec;
      transform: scale(1.02);
    }
    75% {
      border-color: #0b2a44;
    }
    100% {
      border-color: #772bb3;
      transform: scale(1);
    }
  }

  /* Trusted Section */
  .trusted-section-unique {
    background-color: #fff;
    padding: 4.17vh 0;
    overflow: hidden;
  }

  .container-trusted {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .star-rating {
    margin-bottom: 1.04vh;
  }

  .star-icon {
    width: 1.5vw;
    height: 1.5vw;
    margin: 0 0.1vw;
  }

  .trusted-title {
    font-size: 2.86vw;
    margin-bottom: 2.08vh;
  }

  /* Slider Wrapper */
  .slider-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin: 40px 0;
    perspective: 1000px;
  }

  .slider-container {
    display: flex;
    gap: 2vw;
    animation: scroll-left 20s linear infinite; /* Smooth infinite scroll */
    padding: 20px 0;
    transform-style: preserve-3d;
    width: max-content; /* Ensure the container expands to fit all items */
  }

  /* Scroll Animation */
  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%); /* Move by half the container width */
    }
  }

  /* Base Slider Item Styles */
  .slider-item {
    flex: 0 0 auto;
    height: 150px;
    width: 150px;
    position: relative;
    perspective: 1000px;
    cursor: pointer;
    overflow: hidden;
    border-radius: 23px;
  }

  /* Hover Effects */
  .slider-item:hover {
    transform: scale(1.1);
    box-shadow:
      0 12px 24px rgba(0, 0, 0, 0.3),
      0 6px 12px rgba(0, 0, 0, 0.2);
  }

  .slider-item-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s ease;
    transform-style: preserve-3d;
  }

  .slider-item:hover .slider-item-inner {
    transform: rotateY(180deg);
  }

  /* Front and Back Faces */
  .slider-item-front,
  .slider-item-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }

  .slider-item-front {
    background: linear-gradient(135deg, #2a2a40, #1e1e2f);
  }

  .slider-item-back {
    transform: rotateY(180deg);
    background: linear-gradient(
      135deg,
      var(--random-color-1),
      var(--random-color-2)
    );
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    padding: 10px;
  }

  /* Image Styling */
  .img-fluid-trusted {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Title Styling */
  .trusted-username {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
    line-height: 1.4;
  }
}

@media (min-width: 1182px) and (max-width: 1366px) {
  *::before,
  *::after {
    box-sizing: border-box;
  }

  body {
    font-family: "Ebrima", sans-serif;
    background-color: #f8f9fa;
    line-height: 1.6;
  }

  /* Hero Section */
  /* Add these keyframes */
  @keyframes slideInFromRight {
    from {
      opacity: 0;
      transform: translateX(100%);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes slideInFromLeft {
    from {
      opacity: 0;
      transform: translateX(-100%);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* Ensure the sections are initially hidden */
  /* Add these to your CSS */
  .templates-section-unique,
  .vcard-section-unique,
  .dashboard-section-unique {
    opacity: 0;
    transform: translateY(50px);
    transition:
      opacity 0.8s ease-out,
      transform 0.8s ease-out;
  }

  .templates-section-unique.active,
  .vcard-section-unique.active,
  .dashboard-section-unique.active {
    opacity: 1;
    transform: translateY(0);
  }

  .hero-section-unique {
    /*background-image: url("/images/backgrounds/linxhub-image-background.svg");*/
    background-color: #a89ed4;
    background-size: cover;
    background-position: right center;
    padding-top: 22.08vh; /* 40px */
    margin-top: -18vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    height: 160%;
  }

  .container-hero {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .row-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .text-content-hero {
    width: 60%;
    margin-top: -7.5%;
    animation: slideInFromRight 1s ease-out forwards;
  }

  .hero-heading {
    font-size: 5.5vw;
    /* 92px */
    font-weight: bold;
    color: #1b2329;
    line-height: 1.2;
    margin-bottom: 1.04vh;
    /* 20px */
    display: inline-block;
  }
  .sub-hero-heading {
    font-size: 3.8vw;
    /* 92px */
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.04vh;
    /* 20px */
    display: inline-block;
  }

  /* Add animation for the sliding gradient */
  .sliding-gradient {
    background: linear-gradient(120deg, #fff, #fff, #fff, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: slideColor 3s infinite linear;
    background-size: 200% 200%;
  }

  /* Keyframes for the sliding effect 
@keyframes slideColor {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}*/

  .hero-heading .highlight-text {
    color: #fff;
  }

  .hero-links-text {
    font-size: 3vw; /* 30px */
    color: #fff;
    margin-top: 0.52vh; /* 10px */
    margin-bottom: -1.5vh;
  }

  .domain-box-hero {
    display: flex;
    align-items: center;
    font-size: 3vw; /* 30px */
    margin-bottom: 1.04vh; /* 20px */
  }

  .domain-prefix {
    color: #fff;
  }

  .domain-username {
    color: #fff;
  }

  .input-group-hero {
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 0.78vh; /* 15px */
  }

  .input-group-text-hero {
    background-color: #fff;
    border: 0.05vw solid #cccccc;
    border-radius: 5px 0 0 5px;
    padding: 0.73vh;
    font-size: 1.7vw;
    color: #000;
  }

  .username-input-field {
    flex: 1;
    padding: 0.73vh; /* 14px */
    font-size: 1.7vw; /* 25px */
    border: 0.05vw solid #ccc; /* 1px */
    width: 17vw;
  }

  .create-link-btn-hero {
    background-color: #0b2a44;
    color: white;
    padding: 1.1vh 0.04vw;
    border-radius: 0 0.26vw 0.26vw 0;
    font-size: 1.45vw;
    cursor: pointer;
    border: none;
    width: 15vw;
    border-radius: 0 5px 5px 0px;
  }

  .create-link-btn-hero:hover {
    background-color: #75eeec;
  }

  .image-content-hero {
    width: 50%;
    display: flex;
    padding-top: 0.5vh;
    justify-content: right;
    align-items: center;
    margin-bottom: 0.1vh;
    overflow: hidden;
    position: relative;
    animation: slideInFromLeft 1s ease-out forwards;
  }

  .img-fluid-hero {
    transition: transform 0.3s ease-out;
    transform-style: preserve-3d;
    will-change: transform;
  }

  .image-content-hero img.img-fluid-hero {
    max-width: 450px;
    height: 630px;
    object-fit: contain;
    margin-right: -2.5vw;
  }

  /* Add initial hidden state */
  .text-content-hero,
  .image-content-hero {
    opacity: 0;
  }

  /* Templates Section */
  /* Templates Section */
  .templates-section-unique {
    width: 100%;
    background-color: #ffffff;
    padding: 5.17vh 0; /* 80px */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    overflow: hidden; /* Ensure no overflow during animation */
  }

  .container-templates {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .row-templates {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  /* Image Container */
  .image-content-templates {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0; /* Initially hidden */
    transform: translateY(50px); /* Start 50px below */
    transition:
      opacity 0.8s ease-out,
      transform 0.8s ease-out;
  }

  .image-content-templates img.img-fluid-templates {
    max-width: 551px;
    height: 507px;
    object-fit: contain;
    transition: transform 0.3s ease-out; /* For mouse tracking */
    transform-style: preserve-3d;
    will-change: transform;
  }

  /* Text Container */
  .text-content-templates {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: left;
    opacity: 0; /* Initially hidden */
    transform: translateY(50px); /* Start 50px below */
    transition:
      opacity 0.8s ease-out,
      transform 0.8s ease-out;
  }

  .text-content-templates h2.template-heading {
    font-size: 2.8vw; /* 36px */
    font-weight: bold;
    color: #333;
    margin-bottom: 1.04vh; /* 20px */
  }

  .text-content-templates p.template-description {
    font-size: 1.4vw; /* 21px */
    line-height: 1.6;
    margin-bottom: 1.56vh; /* 30px */
    color: #555;
  }

  .create-link-btn-templates {
    background-color: #0b2a44;
    width: 50%;
    color: white;
    padding: 1.4vh 2.6vw; /* 12px 25px */
    font-size: 1.2vw; /* 18px */
    border-radius: 0.36vw; /* 5px */
    cursor: pointer;
    border: none;
  }

  .create-link-btn-templates:hover {
    background-color: #75eeec;
  }

  /* Active State for Animation */
  .templates-section-unique.active .image-content-templates,
  .templates-section-unique.active .text-content-templates {
    opacity: 1; /* Fully visible */
    transform: translateY(0); /* Move to final position */
  }

  /* vCard Section */
  .vcard-section-unique {
    width: 100%;
    background-color: #4f2996; /* Light gray background */
    padding: 5.17vh 0; /* 80px */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    overflow: hidden; /* Ensure no overflow during animation */
  }

  .container-vcard {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px; /* Adjust as needed */
    margin: 0 auto;
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .row-vcard {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  /* Text Content */
  .text-content-vcard {
    width: 50%;
    opacity: 0; /* Initially hidden */
    transform: translateY(50px); /* Start 50px below */
    transition:
      opacity 0.8s ease-out,
      transform 0.8s ease-out;
  }

  .vcard-heading {
    font-size: 2.8vw;
    font-weight: bold;
    color: #7ad5c4;
    margin-bottom: 1.04vh;
    width: 42vw;
    margin-left: -10vw;
  }

  .vcard-heading .highlight-text {
    color: #7ad5c4; /* Purple color for highlight */
  }

  .vcard-description {
    font-size: 1.8vw;
    font-weight: 500;
    color: #fff;
    margin-bottom: 1.04vh;
    width: 38vw;
    margin-left: -10vw;
  }

  .vcard-subtext {
    font-size: 1.4vw;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 2.08vh;
    width: 36vw;
    margin-left: -10vw;
  }

  .create-link-btn-vcard {
    background-color: #0b2a44;
    color: white;
    padding: 1.4vh 4.6vw;
    font-size: 1.2vw;
    border-radius: 0.36vw;
    cursor: pointer;
    border: 0.05vw solid #ccc;
    transition: background-color 0.3s ease;
    margin-left: -10vw;
  }

  .create-link-btn-vcard:hover {
    background-color: #75eeec; /* Darker purple on hover */
  }

  /* Image Content */
  .image-content-vcard {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0; /* Initially hidden */
    transform: translateY(50px); /* Start 50px below */
    transition:
      opacity 0.8s ease-out,
      transform 0.8s ease-out;
  }

  .img-fluid-vcard {
    max-width: 551px;
    height: 507px;
    object-fit: contain;
    transition: transform 0.5s ease-in-out;
    margin-left: 10vw;
  }

  /* Active State for Animation */
  .vcard-section-unique.active .text-content-vcard,
  .vcard-section-unique.active .image-content-vcard {
    opacity: 1; /* Fully visible */
    transform: translateY(0); /* Move to final position */
  }

  /* Image Zoom Effect on Hover */
  .image-content-vcard:hover .img-fluid-vcard {
    animation: zoomInOut 2s infinite ease-in-out;
  }

  @keyframes zoomInOut {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
  }

  /* Dashboard Section */
  .dashboard-section-unique {
    width: 100%;
    background-color: #ffffff; /* White background */
    padding: 5.17vh 0; /* 80px */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    overflow: hidden; /* Ensure no overflow during animation */
  }

  .container-dashboard {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px; /* Adjust as needed */
    margin: 0 auto;
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .row-dashboard {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  /* Text Content */
  .text-content-dashboard {
    width: 50%;
    opacity: 0; /* Initially hidden */
    transform: translateX(-100%); /* Start off-screen to the left */
    transition:
      opacity 0.8s ease-out,
      transform 0.8s ease-out;
  }

  .dashboard-heading {
    font-size: 2.8vw;
    font-weight: bold;
    color: #333;
    margin-bottom: 1.04vh;
    width: 36vw;
  }

  .dashboard-subheading {
    font-size: 2.1vw;
    font-weight: bold;
    color: #333;
    margin-bottom: 1.04vh;
    width: 36vw;
  }

  .dashboard-description {
    font-size: 1.4vw;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2.08vh;
    width: 35vw;
  }

  .create-link-btn-dashboard {
    background-color: #0b2a44;
    width: 74%;
    color: white;
    padding: 1.4vh 2.6vw;
    font-size: 1.2vw;
    border-radius: 0.36vw;
    cursor: pointer;
    border: none;
  }

  .create-link-btn-dashboard:hover {
    background-color: #75eeec; /* Darker purple on hover */
  }

  /* Image Content */
  .image-content-dashboard {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0; /* Initially hidden */
    transform: translateX(100%); /* Start off-screen to the right */
    transition:
      opacity 0.8s ease-out,
      transform 0.8s ease-out;
  }

  .img-fluid-dashboard {
    max-width: 551px;
    height: 507px;
    object-fit: contain;
    margin-left: -20vw;
  }

  /* Active State for Animation */
  .dashboard-section-unique.active .text-content-dashboard {
    opacity: 1; /* Fully visible */
    transform: translateX(0); /* Move to final position */
  }

  .dashboard-section-unique.active .image-content-dashboard {
    opacity: 1; /* Fully visible */
    transform: translateX(0); /* Move to final position */
  }

  /* Features Section */
  .features-section-unique {
    background-color: #4f2996;
    padding: 4.17vh 0; /* 80px */
  }

  .section-title-features {
    font-size: 2.86vw; /* 55px */
    color: #fff;
    text-align: center;
    margin-bottom: 2.08vh; /* 40px */
  }

  .feature-boxes-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.04vw; /* 20px */
    max-width: 62.5vw; /* 1200px */
    margin: 0 auto;
  }

  .feature-box-item {
    background-color: white;
    padding: 1.04vw 1vw;
    border-radius: 0.52vw;
    text-align: center;
    box-shadow: 0 0.21vw 0.42vw rgba(0, 0, 0, 0.1);
    transition:
      transform 0.3s ease,
      background-color 0.3s ease;
    align-items: center;
  }

  .feature-box-item:hover {
    transform: translateY(-0.26vw); /* 5px */
    background-color: #c0ade1;
  }

  .feature-box-item p {
    font-size: 1.4vw; /* 18px */
    color: #333;
    margin-top: 0.52vh; /* 10px */
  }

  .heart-icon {
    width: 2.4vw; /* 40px */
    height: 2.4vw; /* 40px */
    margin-bottom: 0.5vh; /* 10px */
  }

  /* How it Works Section */
  .how-it-works-section-unique {
    background-color: #fff;
    padding: 4.17vh 0; /* 80px */
  }

  .container-how-it-works {
    max-width: 62.5vw; /* 1200px */
    margin: 0 auto;
  }

  .how-it-works-heading {
    font-size: 2.86vw; /* 55px */
    text-align: center;
    margin-bottom: 2.08vh; /* 40px */
  }

  .row-how-it-works {
    display: flex;
    justify-content: space-between;
  }

  .step-box {
    position: relative;
    overflow: hidden; /* Ensure the border animation stays within the box */
    background-color: #fff;
    border: 0.1vw solid transparent; /* Transparent border initially */
    padding: 1.08vw; /* 20px */
    border-radius: 0.52vw; /* 10px */
    text-align: center;
    box-shadow: 0 0.21vw 0.42vw rgba(0, 0, 0, 0.1); /* 4px 8px */
    width: 40%;
    transition:
      transform 0.3s ease,
      box-shadow 0.3s ease;
  }

  .step-box:hover {
    transform: scale(1.05); /* Zoom effect */
    box-shadow: 0 0.42vw 0.83vw rgba(0, 0, 0, 0.2); /* Larger shadow on hover */
  }
  /* Animated Border */
  .step-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 0.1vw solid transparent;
    border-radius: 0.52vw; /* Match the box's border radius */
    z-index: -1;
    animation: borderAnimation 2s infinite linear;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .step-box:hover::before {
    opacity: 1; /* Show the animated border on hover */
  }

  .step-number-circle {
    background-color: #0b2a44;
    color: #fff;
    width: 2.8vw; /* 50px */
    height: 2.8vw; /* 50px */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 1.35vw; /* 24px */
    margin: 0 auto 1.04vh; /* 20px */
  }

  .step-title {
    font-size: 1.7vw; /* 25px */
    font-weight: bold;
    text-align: left;
    color: #333;
    margin-bottom: 0.78vh; /* 15px */
  }

  .step-description {
    font-size: 1.18vw; /* 20px */
    text-align: left;
    color: #666;
    line-height: 1.6;
  }

  @keyframes borderAnimation {
    0% {
      border-color: #772bb3;
      transform: scale(1);
    }
    25% {
      border-color: #0b2a44;
    }
    50% {
      border-color: #75eeec;
      transform: scale(1.02);
    }
    75% {
      border-color: #0b2a44;
    }
    100% {
      border-color: #772bb3;
      transform: scale(1);
    }
  }

  /* Trusted Section */
  .trusted-section-unique {
    background-color: #fff;
    padding: 4.17vh 0;
    overflow: hidden;
  }

  .container-trusted {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .star-rating {
    margin-bottom: 1.04vh;
  }

  .star-icon {
    width: 1.5vw;
    height: 1.5vw;
    margin: 0 0.1vw;
  }

  .trusted-title {
    font-size: 2.86vw;
    margin-bottom: 2.08vh;
  }

  /* Slider Wrapper */
  .slider-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin: 40px 0;
    perspective: 1000px;
  }

  .slider-container {
    display: flex;
    gap: 2vw;
    animation: scroll-left 20s linear infinite; /* Smooth infinite scroll */
    padding: 20px 0;
    transform-style: preserve-3d;
    width: max-content; /* Ensure the container expands to fit all items */
  }

  /* Scroll Animation */
  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%); /* Move by half the container width */
    }
  }

  /* Base Slider Item Styles */
  .slider-item {
    flex: 0 0 auto;
    height: 150px;
    width: 150px;
    position: relative;
    perspective: 1000px;
    cursor: pointer;
    overflow: hidden;
    border-radius: 23px;
  }

  /* Hover Effects */
  .slider-item:hover {
    transform: scale(1.1);
    box-shadow:
      0 12px 24px rgba(0, 0, 0, 0.3),
      0 6px 12px rgba(0, 0, 0, 0.2);
  }

  .slider-item-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s ease;
    transform-style: preserve-3d;
  }

  .slider-item:hover .slider-item-inner {
    transform: rotateY(180deg);
  }

  /* Front and Back Faces */
  .slider-item-front,
  .slider-item-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }

  .slider-item-front {
    background: linear-gradient(135deg, #2a2a40, #1e1e2f);
  }

  .slider-item-back {
    transform: rotateY(180deg);
    background: linear-gradient(
      135deg,
      var(--random-color-1),
      var(--random-color-2)
    );
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    padding: 10px;
  }

  /* Image Styling */
  .img-fluid-trusted {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Title Styling */
  .trusted-username {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
    line-height: 1.4;
  }
}

@media (min-width: 1367px) and (max-width: 1368px) {
  *::before,
  *::after {
    box-sizing: border-box;
  }

  body {
    font-family: "Ebrima", sans-serif;
    background-color: #f8f9fa;
    line-height: 1.6;
  }

  /* Hero Section */
  /* Add these keyframes */
  @keyframes slideInFromRight {
    from {
      opacity: 0;
      transform: translateX(100%);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes slideInFromLeft {
    from {
      opacity: 0;
      transform: translateX(-100%);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* Ensure the sections are initially hidden */
  /* Add these to your CSS */
  .templates-section-unique,
  .vcard-section-unique,
  .dashboard-section-unique {
    opacity: 0;
    transform: translateY(50px);
    transition:
      opacity 0.8s ease-out,
      transform 0.8s ease-out;
  }

  .templates-section-unique.active,
  .vcard-section-unique.active,
  .dashboard-section-unique.active {
    opacity: 1;
    transform: translateY(0);
  }

  .hero-section-unique {
    /*background-image: url("/images/backgrounds/linxhub-image-background.svg");*/
    background-color: #a89ed4;
    background-size: cover;
    background-position: right center;
    padding-top: 22.08vh; /* 40px */
    margin-top: -18vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    height: 160%;
  }

  .container-hero {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .row-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .text-content-hero {
    width: 60%;
    margin-top: -7.5%;
    animation: slideInFromRight 1s ease-out forwards;
  }

  .hero-heading {
    font-size: 5.5vw;
    /* 92px */
    font-weight: bold;
    color: #1b2329;
    line-height: 1.2;
    margin-bottom: 1.04vh;
    /* 20px */
    display: inline-block;
  }
  .sub-hero-heading {
    font-size: 3.8vw;
    /* 92px */
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.04vh;
    /* 20px */
    display: inline-block;
  }

  /* Add animation for the sliding gradient */
  .sliding-gradient {
    background: linear-gradient(120deg, #fff, #fff, #fff, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: slideColor 3s infinite linear;
    background-size: 200% 200%;
  }

  /* Keyframes for the sliding effect 
@keyframes slideColor {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}*/

  .hero-heading .highlight-text {
    color: #fff;
  }

  .hero-links-text {
    font-size: 3vw; /* 30px */
    color: #fff;
    margin-top: 0.52vh; /* 10px */
    margin-bottom: -1.5vh;
  }

  .domain-box-hero {
    display: flex;
    align-items: center;
    font-size: 3vw; /* 30px */
    margin-bottom: 1.04vh; /* 20px */
  }

  .domain-prefix {
    color: #fff;
  }

  .domain-username {
    color: #fff;
  }

  .input-group-hero {
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 0.78vh; /* 15px */
  }

  .input-group-text-hero {
    background-color: #fff;
    border: 0.05vw solid #cccccc;
    border-radius: 5px 0 0 5px;
    padding: 0.73vh;
    font-size: 1.7vw;
    color: #000;
  }

  .username-input-field {
    flex: 1;
    padding: 0.73vh; /* 14px */
    font-size: 1.7vw; /* 25px */
    border: 0.05vw solid #ccc; /* 1px */
    width: 17vw;
  }

  .create-link-btn-hero {
    background-color: #0b2a44;
    color: white;
    padding: 1.1vh 0.04vw;
    border-radius: 0 0.26vw 0.26vw 0;
    font-size: 1.45vw;
    cursor: pointer;
    border: none;
    width: 15vw;
    border-radius: 0 5px 5px 0px;
  }

  .create-link-btn-hero:hover {
    background-color: #75eeec;
  }

  .image-content-hero {
    width: 50%;
    display: flex;
    padding-top: 0.5vh;
    justify-content: right;
    align-items: center;
    margin-bottom: 0.1vh;
    overflow: hidden;
    position: relative;
    animation: slideInFromLeft 1s ease-out forwards;
  }

  .img-fluid-hero {
    transition: transform 0.3s ease-out;
    transform-style: preserve-3d;
    will-change: transform;
  }

  .image-content-hero img.img-fluid-hero {
    max-width: 450px;
    height: 630px;
    object-fit: contain;
    margin-right: -2.5vw;
  }

  /* Add initial hidden state */
  .text-content-hero,
  .image-content-hero {
    opacity: 0;
  }

  /* Templates Section */
  /* Templates Section */
  .templates-section-unique {
    width: 100%;
    background-color: #ffffff;
    padding: 5.17vh 0; /* 80px */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    overflow: hidden; /* Ensure no overflow during animation */
  }

  .container-templates {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .row-templates {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  /* Image Container */
  .image-content-templates {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0; /* Initially hidden */
    transform: translateY(50px); /* Start 50px below */
    transition:
      opacity 0.8s ease-out,
      transform 0.8s ease-out;
  }

  .image-content-templates img.img-fluid-templates {
    max-width: 551px;
    height: 507px;
    object-fit: contain;
    transition: transform 0.3s ease-out; /* For mouse tracking */
    transform-style: preserve-3d;
    will-change: transform;
  }

  /* Text Container */
  .text-content-templates {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: left;
    opacity: 0; /* Initially hidden */
    transform: translateY(50px); /* Start 50px below */
    transition:
      opacity 0.8s ease-out,
      transform 0.8s ease-out;
  }

  .text-content-templates h2.template-heading {
    font-size: 2.8vw; /* 36px */
    font-weight: bold;
    color: #333;
    margin-bottom: 1.04vh; /* 20px */
  }

  .text-content-templates p.template-description {
    font-size: 1.4vw; /* 21px */
    line-height: 1.6;
    margin-bottom: 1.56vh; /* 30px */
    color: #555;
  }

  .create-link-btn-templates {
    background-color: #0b2a44;
    width: 50%;
    color: white;
    padding: 1.4vh 2.6vw; /* 12px 25px */
    font-size: 1.2vw; /* 18px */
    border-radius: 0.36vw; /* 5px */
    cursor: pointer;
    border: none;
  }

  .create-link-btn-templates:hover {
    background-color: #75eeec;
  }

  /* Active State for Animation */
  .templates-section-unique.active .image-content-templates,
  .templates-section-unique.active .text-content-templates {
    opacity: 1; /* Fully visible */
    transform: translateY(0); /* Move to final position */
  }

  /* vCard Section */
  .vcard-section-unique {
    width: 100%;
    background-color: #4f2996; /* Light gray background */
    padding: 5.17vh 0; /* 80px */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    overflow: hidden; /* Ensure no overflow during animation */
  }

  .container-vcard {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px; /* Adjust as needed */
    margin: 0 auto;
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .row-vcard {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  /* Text Content */
  .text-content-vcard {
    width: 50%;
    opacity: 0; /* Initially hidden */
    transform: translateY(50px); /* Start 50px below */
    transition:
      opacity 0.8s ease-out,
      transform 0.8s ease-out;
  }

  .vcard-heading {
    font-size: 2.8vw;
    font-weight: bold;
    color: #7ad5c4;
    margin-bottom: 1.04vh;
    width: 42vw;
    margin-left: -10vw;
  }

  .vcard-heading .highlight-text {
    color: #7ad5c4; /* Purple color for highlight */
  }

  .vcard-description {
    font-size: 1.8vw;
    font-weight: 500;
    color: #fff;
    margin-bottom: 1.04vh;
    width: 38vw;
    margin-left: -10vw;
  }

  .vcard-subtext {
    font-size: 1.4vw;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 2.08vh;
    width: 36vw;
    margin-left: -10vw;
  }

  .create-link-btn-vcard {
    background-color: #0b2a44;
    color: white;
    padding: 1.4vh 4.6vw;
    font-size: 1.2vw;
    border-radius: 0.36vw;
    cursor: pointer;
    border: 0.05vw solid #ccc;
    transition: background-color 0.3s ease;
    margin-left: -10vw;
  }

  .create-link-btn-vcard:hover {
    background-color: #75eeec; /* Darker purple on hover */
  }

  /* Image Content */
  .image-content-vcard {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0; /* Initially hidden */
    transform: translateY(50px); /* Start 50px below */
    transition:
      opacity 0.8s ease-out,
      transform 0.8s ease-out;
  }

  .img-fluid-vcard {
    max-width: 551px;
    height: 507px;
    object-fit: contain;
    transition: transform 0.5s ease-in-out;
    margin-left: 10vw;
  }

  /* Active State for Animation */
  .vcard-section-unique.active .text-content-vcard,
  .vcard-section-unique.active .image-content-vcard {
    opacity: 1; /* Fully visible */
    transform: translateY(0); /* Move to final position */
  }

  /* Image Zoom Effect on Hover */
  .image-content-vcard:hover .img-fluid-vcard {
    animation: zoomInOut 2s infinite ease-in-out;
  }

  @keyframes zoomInOut {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
  }

  /* Dashboard Section */
  .dashboard-section-unique {
    width: 100%;
    background-color: #ffffff; /* White background */
    padding: 5.17vh 0; /* 80px */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    overflow: hidden; /* Ensure no overflow during animation */
  }

  .container-dashboard {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px; /* Adjust as needed */
    margin: 0 auto;
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .row-dashboard {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  /* Text Content */
  .text-content-dashboard {
    width: 50%;
    opacity: 0; /* Initially hidden */
    transform: translateX(-100%); /* Start off-screen to the left */
    transition:
      opacity 0.8s ease-out,
      transform 0.8s ease-out;
  }

  .dashboard-heading {
    font-size: 2.8vw;
    font-weight: bold;
    color: #333;
    margin-bottom: 1.04vh;
    width: 36vw;
  }

  .dashboard-subheading {
    font-size: 2.1vw;
    font-weight: bold;
    color: #333;
    margin-bottom: 1.04vh;
    width: 36vw;
  }

  .dashboard-description {
    font-size: 1.4vw;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2.08vh;
    width: 35vw;
  }

  .create-link-btn-dashboard {
    background-color: #0b2a44;
    width: 74%;
    color: white;
    padding: 1.4vh 2.6vw;
    font-size: 1.2vw;
    border-radius: 0.36vw;
    cursor: pointer;
    border: none;
  }

  .create-link-btn-dashboard:hover {
    background-color: #75eeec; /* Darker purple on hover */
  }

  /* Image Content */
  .image-content-dashboard {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0; /* Initially hidden */
    transform: translateX(100%); /* Start off-screen to the right */
    transition:
      opacity 0.8s ease-out,
      transform 0.8s ease-out;
  }

  .img-fluid-dashboard {
    max-width: 551px;
    height: 507px;
    object-fit: contain;
    margin-left: -20vw;
  }

  /* Active State for Animation */
  .dashboard-section-unique.active .text-content-dashboard {
    opacity: 1; /* Fully visible */
    transform: translateX(0); /* Move to final position */
  }

  .dashboard-section-unique.active .image-content-dashboard {
    opacity: 1; /* Fully visible */
    transform: translateX(0); /* Move to final position */
  }

  /* Features Section */
  .features-section-unique {
    background-color: #4f2996;
    padding: 4.17vh 0; /* 80px */
  }

  .section-title-features {
    font-size: 2.86vw; /* 55px */
    color: #fff;
    text-align: center;
    margin-bottom: 2.08vh; /* 40px */
  }

  .feature-boxes-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.04vw; /* 20px */
    max-width: 62.5vw; /* 1200px */
    margin: 0 auto;
  }

  .feature-box-item {
    background-color: white;
    padding: 1.04vw 1vw;
    border-radius: 0.52vw;
    text-align: center;
    box-shadow: 0 0.21vw 0.42vw rgba(0, 0, 0, 0.1);
    transition:
      transform 0.3s ease,
      background-color 0.3s ease;
    align-items: center;
  }

  .feature-box-item:hover {
    transform: translateY(-0.26vw); /* 5px */
    background-color: #c0ade1;
  }

  .feature-box-item p {
    font-size: 1.4vw; /* 18px */
    color: #333;
    margin-top: 0.52vh; /* 10px */
  }

  .heart-icon {
    width: 2.4vw; /* 40px */
    height: 2.4vw; /* 40px */
    margin-bottom: 0.5vh; /* 10px */
  }

  /* How it Works Section */
  .how-it-works-section-unique {
    background-color: #fff;
    padding: 4.17vh 0; /* 80px */
  }

  .container-how-it-works {
    max-width: 62.5vw; /* 1200px */
    margin: 0 auto;
  }

  .how-it-works-heading {
    font-size: 2.86vw; /* 55px */
    text-align: center;
    margin-bottom: 2.08vh; /* 40px */
  }

  .row-how-it-works {
    display: flex;
    justify-content: space-between;
  }

  .step-box {
    position: relative;
    overflow: hidden; /* Ensure the border animation stays within the box */
    background-color: #fff;
    border: 0.1vw solid transparent; /* Transparent border initially */
    padding: 1.08vw; /* 20px */
    border-radius: 0.52vw; /* 10px */
    text-align: center;
    box-shadow: 0 0.21vw 0.42vw rgba(0, 0, 0, 0.1); /* 4px 8px */
    width: 40%;
    transition:
      transform 0.3s ease,
      box-shadow 0.3s ease;
  }

  .step-box:hover {
    transform: scale(1.05); /* Zoom effect */
    box-shadow: 0 0.42vw 0.83vw rgba(0, 0, 0, 0.2); /* Larger shadow on hover */
  }
  /* Animated Border */
  .step-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 0.1vw solid transparent;
    border-radius: 0.52vw; /* Match the box's border radius */
    z-index: -1;
    animation: borderAnimation 2s infinite linear;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .step-box:hover::before {
    opacity: 1; /* Show the animated border on hover */
  }

  .step-number-circle {
    background-color: #0b2a44;
    color: #fff;
    width: 2.8vw; /* 50px */
    height: 2.8vw; /* 50px */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 1.35vw; /* 24px */
    margin: 0 auto 1.04vh; /* 20px */
  }

  .step-title {
    font-size: 1.7vw; /* 25px */
    font-weight: bold;
    text-align: left;
    color: #333;
    margin-bottom: 0.78vh; /* 15px */
  }

  .step-description {
    font-size: 1.18vw; /* 20px */
    text-align: left;
    color: #666;
    line-height: 1.6;
  }

  @keyframes borderAnimation {
    0% {
      border-color: #772bb3;
      transform: scale(1);
    }
    25% {
      border-color: #0b2a44;
    }
    50% {
      border-color: #75eeec;
      transform: scale(1.02);
    }
    75% {
      border-color: #0b2a44;
    }
    100% {
      border-color: #772bb3;
      transform: scale(1);
    }
  }

  /* Trusted Section */
  .trusted-section-unique {
    background-color: #fff;
    padding: 4.17vh 0;
    overflow: hidden;
  }

  .container-trusted {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .star-rating {
    margin-bottom: 1.04vh;
  }

  .star-icon {
    width: 1.5vw;
    height: 1.5vw;
    margin: 0 0.1vw;
  }

  .trusted-title {
    font-size: 2.86vw;
    margin-bottom: 2.08vh;
  }

  /* Slider Wrapper */
  .slider-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin: 40px 0;
    perspective: 1000px;
  }

  .slider-container {
    display: flex;
    gap: 2vw;
    animation: scroll-left 20s linear infinite; /* Smooth infinite scroll */
    padding: 20px 0;
    transform-style: preserve-3d;
    width: max-content; /* Ensure the container expands to fit all items */
  }

  /* Scroll Animation */
  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%); /* Move by half the container width */
    }
  }

  /* Base Slider Item Styles */
  .slider-item {
    flex: 0 0 auto;
    height: 150px;
    width: 150px;
    position: relative;
    perspective: 1000px;
    cursor: pointer;
    overflow: hidden;
    border-radius: 23px;
  }

  /* Hover Effects */
  .slider-item:hover {
    transform: scale(1.1);
    box-shadow:
      0 12px 24px rgba(0, 0, 0, 0.3),
      0 6px 12px rgba(0, 0, 0, 0.2);
  }

  .slider-item-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s ease;
    transform-style: preserve-3d;
  }

  .slider-item:hover .slider-item-inner {
    transform: rotateY(180deg);
  }

  /* Front and Back Faces */
  .slider-item-front,
  .slider-item-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }

  .slider-item-front {
    background: linear-gradient(135deg, #2a2a40, #1e1e2f);
  }

  .slider-item-back {
    transform: rotateY(180deg);
    background: linear-gradient(
      135deg,
      var(--random-color-1),
      var(--random-color-2)
    );
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    padding: 10px;
  }

  /* Image Styling */
  .img-fluid-trusted {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Title Styling */
  .trusted-username {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
    line-height: 1.4;
  }
}
