/* Styling for the hero section */

/* Styling for the text and links */
/* Help navigation styles for desktop (default) */
@media screen and (max-width: 1289px) {
  .help-desktop {
    display: none;
    font-weight: bold !important;
  }
}

@media screen and (min-width: 1288px) {
  .help-mobile {
    display: none;
    font-weight: bold !important;
  }
}

.help-navigation {
  font-weight: bold;
  margin-bottom: 20px;
  display: block;
  text-align: center;
  padding: 10px 0px;
  border-radius: 10px;
  max-width: fit-content;
  gap: 20px;
}

/* Individual span styles */
.help-navigation span {
  color: black;
  margin-right: 15px;
}

/* Individual link styles */
.help-navigation a {
  color: white !important;
  text-decoration: none;
  display: inline-block;
  padding: 10px 15px;
  background-color: #2fbcbb;
  border-radius: 5px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
  margin-right: 10px;
}

/* Hover styles */
.help-navigation a:hover {
  text-decoration: underline;
}

/* MEDIA QUERY: Mobile-specific adjustments */
@media (max-width: 768px) {
  .help-navigation {
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
    padding-bottom: 15px; /* Add some bottom padding to highlight the scrollbar area */
    box-shadow: inset 0 -5px 5px -5px rgba(0, 0, 0, 0.2); /* Subtle shadow to indicate more content */
    border-bottom: 2px solid #2fbcbb; /* Optional: Add a bottom border to emphasize scrolling */
  }

  /* Custom scrollbar styling for WebKit browsers (e.g., Chrome, Safari) */
  .help-navigation::-webkit-scrollbar {
    height: 10px; /* Increase height to make it more noticeable */
  }

  .help-navigation::-webkit-scrollbar-thumb {
    background-color: #2fbcbb;
    border-radius: 10px;
    border: 2px solid #f9f9f9; /* Add border to make scrollbar stand out */
  }

  .help-navigation::-webkit-scrollbar-track {
    background-color: #f1f1f1; /* Lighter color to create contrast with the thumb */
  }

  /* Make sure links are still easily clickable */
  .help-navigation a {
    margin-right: 15px; /* Slightly increase spacing to make links more distinct */
    padding: 12px 18px; /* Slightly larger padding for easier tapping on mobile */
  }
}

/* Brand section start */
.brand-section-banner {
  background-color: black;
  margin-top: 70px;
  padding: 120px 20px;
  display: flex;
  justify-content: center;
  transform: translateY(50px);
  transition: opacity 2s ease-out, transform 2s ease-out;
}

.brand-section-banner.show {
  opacity: 1;
  transform: translateY(0);
}

.brand-section-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
}
@media (min-width: 767px) {
  .brand-section-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0 20px;
  }
}

.brand-section-text {
  font-size: 35px;
  font-weight: bold;
  color: white;
  margin-right: 50px;
  text-decoration: underline;
}

.brand-section-image-text {
  flex-direction: column;
  align-items: center;
}

.brand-section-image {
  max-width: 400px;
  height: auto;
  margin-bottom: 20px;
}

.brand-section-text-p {
  color: white;
  font-size: 14px;
  line-height: 1.6;
}

.brand-section-text-line {
  color: white;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.brand-section-text-lines {
  color: black;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

/* Show class to make individual text elements visible */
.show-element {
  opacity: 1;
  transform: translateY(0);
}

/* Button Styling */
.brand-section-buttons {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.brand-button {
  background-color: transparent;
  color: white;
  border: 1px solid white;
  padding: 2px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
  cursor: default;
}

/* .brand-button:hover {
  background-color: white;
  color: black;
} */

/* Brand section end */

/* Design section start */
.design-section-banner {
  background-color: white;
  padding: 120px 20px;
  display: flex;
  justify-content: center;
  transform: translateY(50px);
  transition: opacity 2s ease-out, transform 2s ease-out;
}

.design-section-banner.show {
  opacity: 1;
  transform: translateY(0);
}

.design-section-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 767px) {
  .design-section-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0 20px;
  }
}

.design-section-text {
  font-size: 35px;
  font-weight: bold;
  color: black;
  margin-right: 50px;
  text-decoration: underline;
}

.design-section-image-text {
  flex-direction: column;
  align-items: center;
}

.design-section-image {
  max-width: 400px;
  height: auto;
  margin-bottom: 20px;
}

.design-section-text-p {
  color: black;
  font-size: 14px;
  line-height: 1.6;
}

/* Button Styling */
.design-section-buttons {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.design-button {
  background-color: transparent;
  color: black;
  border: 1px solid black;
  padding: 2px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
  cursor: default;
}

/* .design-button:hover {
  background-color: black;
  color: white;
} */

/* Design section end */

/* Digital section start */
.digital-section-banner {
  background-color: #2fbcbb;
  padding: 120px 20px;
  display: flex;
  justify-content: center;
  transform: translateY(50px);
  transition: opacity 2s ease-out, transform 2s ease-out;
}

.digital-section-banner.show {
  opacity: 1;
  transform: translateY(0);
}

.digital-section-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 767px) {
  .digital-section-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0 20px;
  }
}

.digital-section-text {
  font-size: 35px;
  font-weight: bold;
  color: white;
  margin-right: 50px;
  text-decoration: underline;
}

.digital-section-image-text {
  flex-direction: column;
  align-items: center;
}

.digital-section-image {
  max-width: 400px;
  height: auto;
  margin-bottom: 20px;
}

.digital-section-text-p {
  color: white;
  font-size: 14px;
  line-height: 1.6;
}

/* Button Styling */
.digital-section-buttons {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.digital-button {
  background-color: transparent;
  color: white;
  border: 1px solid white;
  padding: 2px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
  cursor: default;
}

/* .digital-button:hover {
  background-color: white;
  color: black;
} */

/* Digital section end */

/* Development section start */
.development-section-banner {
  background-color: black;
  padding: 120px 20px;
  display: flex;
  justify-content: center;
  transform: translateY(50px);
  transition: opacity 2s ease-out, transform 2s ease-out;
}

.development-section-banner.show {
  opacity: 1;
  transform: translateY(0);
}

.development-section-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 767px) {
  .development-section-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0 20px;
  }
}

.development-section-text {
  font-size: 35px;
  font-weight: bold;
  color: white;
  margin-right: 50px;
  text-decoration: underline;
}

.development-section-image-text {
  flex-direction: column;
  align-items: center;
}

.development-section-image {
  max-width: 400px;
  height: auto;
  margin-bottom: 20px;
}

.development-section-text-p {
  color: white;
  font-size: 14px;
  line-height: 1.6;
}

/* Button Styling */
.development-section-buttons {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.development-button {
  background-color: transparent;
  color: white;
  border: 1px solid white;
  padding: 2px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
  cursor: default;
}

/* .development-button:hover {
  background-color: white;
  color: black;
} */

/* Development section end */

/* copywriting section start */
.copywriting-section-banner {
  background-color: white;
  padding: 120px 20px;
  display: flex;
  justify-content: center;
  transform: translateY(50px);
  transition: opacity 2s ease-out, transform 2s ease-out;
}

.copywriting-section-banner.show {
  opacity: 1;
  transform: translateY(0);
}

.copywriting-section-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 767px) {
  .copywriting-section-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0 20px;
  }
}

.copywriting-section-text {
  font-size: 35px;
  font-weight: bold;
  color: black;
  margin-right: 50px;
  text-decoration: underline;
}

.copywriting-section-image-text {
  flex-direction: column;
  align-items: center;
}

.copywriting-section-image {
  max-width: 400px;
  height: auto;
  margin-bottom: 20px;
}

.copywriting-section-text-p {
  color: black;
  font-size: 14px;
  line-height: 1.6;
}

/* Button Styling */
.copywriting-section-buttons {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.copywriting-button {
  background-color: transparent;
  color: black;
  border: 1px solid black;
  padding: 2px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
  cursor: default;
}

/* .design-button:hover {
  background-color: black;
  color: white;
} */

/* Design section end */
