body {
  background-color: #221e1f;
  color: #d9d4b7;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}
.three-d {
  height: 100%;
  margin: 0;
  overflow-x: hidden; /* Prevent horizontal scrolling */
  perspective: 1px; /* This creates a strong 3D effect */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  transform: translateZ(0px);
}
.container a {
  color: #d57f76;
  text-decoration: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex-direction: column;
  animation: fadeIn 5s ease-in-out;
}

.header {
  text-align: center;
  width: 100%;
  background: #fff;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative; /* Ensure it scrolls out */
  z-index: 10;
}

.hero {
  text-align: center;
  padding: 50px 20px;
}

.hero h1 {
  font-size: 2.5em;
  color: #f0f0f0;
}

.hero p {
  font-size: 1.2em;
  margin-top: 20px;
  color: #d7a996;
}

.hero .cta-button {
  margin-top: 30px;
  background-color: #d57f76;
  color: #221e1f;
  padding: 15px 30px;
  text-decoration: none;
  font-size: 1.2em;
  border-radius: 5px;
  display: inline-block;
}
.hero-content {
  max-width: 50%;
}
.hero-video img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  padding-top: 8px;
  height: 80vh;
}
.hero-video video {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  padding-top: 8px;
  padding-bottom: 8px;
  height: 80vh;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2em; /* Smaller headline on mobile */
  }

  .hero p {
    font-size: 1em; /* Adjust paragraph size */
  }

  .hero .cta-button {
    font-size: 1em; /* Adjust button size */
    padding: 10px 20px; /* Adjust padding for touch targets */
  }

  .features {
    flex-direction: column; /* Stack features vertically */
    align-items: center;
  }

  .feature {
    margin-bottom: 20px; /* Add spacing between features */
  }
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-content,
  .hero-video {
    max-width: 100%;
  }
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 50px 0;
  gap: 20px; /* Space between feature items */
}

.feature {
  text-align: center;
  max-width: 200px; /* Adjust the max-width to control the size */
  flex: 1 1 200px; /* Allows items to shrink and grow within constraints */
  margin-bottom: 20px; /* Space below each feature */
}

.feature i {
  color: #d57f76;
  margin-bottom: 20px;
}

.feature h3 {
  color: #f0f0f0;
  font-size: 1.5em;
}

.feature p {
  color: #d7a996;
  font-size: 1em;
}

.feature img {
  width: 100%; /* Ensures the image scales with the container */
  height: auto; /* Maintains the aspect ratio */
  border-radius: 10px; /* Adds a slight border radius for aesthetics */
}
.feature video {
  width: 100%; /* Ensures the image scales with the container */
  height: auto; /* Maintains the aspect ratio */
  border-radius: 10px; /* Adds a slight border radius for aesthetics */
}

.feature h3 {
  font-size: 1.2em;
  margin-top: 10px;
  color: #f0f0f0;
}

.feature p {
  font-size: 1em;
  color: #d7a996;
  margin-top: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .features {
    flex-direction: column; /* Stack features vertically on smaller screens */
    align-items: center;
  }

  .feature {
    max-width: 300px; /* Allow slightly larger images on smaller screens */
  }
}

.trial {
  text-align: center;
  margin: 50px 20px;
  padding: 30px;
  background-color: #d57f76;
  border-radius: 10px;
}

.trial h2 {
  color: #221e1f;
  font-size: 2em;
}

.trial p {
  color: #221e1f;
  margin-top: 20px;
  font-size: 1.2em;
}

.trial .cta-button {
  margin-top: 20px;
  background-color: #221e1f;
  color: #d9d4b7;
  padding: 15px 30px;
  text-decoration: none;
  font-size: 1.2em;
  border-radius: 5px;
  display: inline-block;
}

footer {
  background-color: #333;
  padding: 20px 0;
  text-align: center;
  color: #f0f0f0;
}

footer a {
  color: #bbd5ed;
  text-decoration: none;
  margin: 0 10px;
}

#steps {
  transform-style: preserve-3d; /* Allows children to exist in 3D space */
}

.step {
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  color: white;
  transform: translateZ(-1px) scale(0.8); /* Start farther and scaled down */
  transition: transform 0.5s; /* Smooth transition for transform */
  padding-bottom: 5%;
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .step {
    height: 50vh; /* Reduced height for mobile */
    font-size: 1.5em; /* Smaller font size for readability */
    /* padding: 10px; Add some padding */
  }

  /* #steps {
    display: flex;
    flex-direction: column;
  } */
}

#step1 {
  background: #f4cccc; /* Lightest shade */
}

#step2 {
  background: #eaa6a0; /* Light pinkish shade */
}

#step3 {
  background: #d57f76; /* Primary color */
}

#step4 {
  background: #b75c58; /* Darker, more muted */
}

#step5 {
  background: #8b3d3a; /* Darkest, earthy tone */
}

.navbar {
  background-color: #221e1f; /* Background matches the dark theme */
  padding: 10px 0;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.navbar ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
}

.navbar li {
  margin-right: 20px;
}

.navbar a {
  color: #d9d4b7; /* Text color matches the light theme */
  text-decoration: none;
  font-size: 1.2em;
  padding: 8px 16px;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.navbar a:hover {
  background-color: #d57f76; /* Highlight color on hover */
  color: #221e1f; /* Dark text on hover for contrast */
}

.navbar a.active {
  background-color: #d57f76; /* Highlight active link */
  color: #221e1f; /* Dark text for active link */
}

/* Make the navbar sticky on scroll */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .navbar ul {
    display: flex;
    flex-direction: column; /* Stack the navigation items */
    align-items: center; /* Center the items */
  }

  .navbar li {
    margin-right: 0; /* Remove right margin */
    margin-bottom: 10px; /* Add space between items */
  }

  .navbar a,
  .navbar button {
    font-size: 1.1em; /* Slightly smaller font size */
    padding: 10px 20px; /* Increase padding for touch targets */
  }
}

.page-title {
  color: #d57f76;
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
}

.intro,
.trial-section,
.cta {
  background-color: #2c2a2a;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.intro p,
.trial-section p,
.cta p {
  font-size: 1.2em;
  line-height: 1.5;
}

.trial-section h2 {
  font-size: 2em;
  color: #d7a996;
  margin-bottom: 10px;
}

.download-buttons {
  text-align: center;
  margin: 30px 0;
}

.download-button img {
  width: 180px;
  height: auto;
  transition: transform 0.3s ease;
}

.download-button img:hover {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .page-title {
    font-size: 2em;
  }

  .intro p,
  .trial-section p,
  .cta p {
    font-size: 1em;
  }

  .download-button img {
    width: 150px;
  }
}
.about-section {
  background-color: #2c2a2a;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.about-section h2 {
  font-size: 2em;
  color: #d7a996;
  margin-bottom: 10px;
}

.about-section p,
.about-section ul {
  font-size: 1.2em;
  line-height: 1.5;
}

.about-section ul {
  padding-left: 20px;
  list-style-type: disc;
}

.about-section i {
  color: #d57f76;
  margin-right: 10px;
}
.about-section a {
  color: #d57f76;
  text-decoration: none;
}

@media (max-width: 768px) {
  .about-section h2 {
    font-size: 1.8em;
  }

  .about-section p,
  .about-section ul {
    font-size: 1em;
  }

  .about-section ul {
    padding-left: 15px;
  }
}

.cta-section p strong,
.hero .cta p strong,
.trial p strong {
  font-size: 1.2em;
  color: #d57f76; /* Use your primary color for emphasis */
}
