/* Helper function to scale clamp values */
/*
Small screens: 0px to 767px
Medium screens: 768px to 1199px
Large screens: 1200px and up
*/
body {
  font-family: "Roboto", sans-serif;
  background: linear-gradient(to bottom, #cceef5, #d9f0d1);
  min-height: 100vh;
  background-repeat: no-repeat;
  background-attachment: fixed;
  margin: 0;
}

h1 {
  font-size: clamp(3rem, 6vw, 4rem);
  letter-spacing: calc(clamp(3rem, 6vw, 4rem) * 0.02);
  font-weight: normal;
  color: #000;
  text-align: center;
  margin: clamp(3rem, 6vw, 4rem) clamp(0.75rem, 1.5vw, 1rem);
}
h1 span.black {
  color: #000;
  font-weight: bold;
}
h1 span.red {
  color: #f00;
  font-weight: bold;
}
h1 span.blue {
  color: #00f;
  font-weight: bold;
}

.cta {
  display: inline-block; /* Make it behave like a button */
  text-decoration: none; /* Remove underline */
  width: clamp(27rem, 54vw, 36rem);
  max-width: 100%;
  background: #124f54;
  color: #fff;
  border: none;
  border-radius: 100px;
  font-size: clamp(2.4rem, 4.8vw, 3.2rem);
  letter-spacing: calc(clamp(3rem, 6vw, 4rem) * 0.05);
  text-align: center;
  cursor: pointer; /* Pointer cursor on hover */
  display: block;
  margin: clamp(3rem, 6vw, 4rem) auto;
  padding: clamp(0.375rem, 0.75vw, 0.5rem);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional shadow for styling */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta:hover {
  color: #f00; /* Highlight color on hover */
  transform: translateY(-5px); /* Slight lift on hover */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Elevated shadow effect */
}

.carousel {
  margin: 0;
  display: flex;
  overflow: hidden; /* Hide any overflowing content */
  position: relative;
  width: 100%; /* Full width of the page */
}

.carousel-track {
  margin: clamp(0.75rem, 1.5vw, 1rem);
  display: flex;
  gap: 20px; /* Spacing between videos */
  animation: infinite-scroll 20s linear infinite;
  transform: translateX(0); /* Start with the full line visible */
}

.carousel video {
  height: 250px;
  flex-shrink: 0; /* Prevent videos from shrinking */
  width: auto;
  border-radius: 10px; /* Optional rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional shadow for styling */
}

/* Keyframes for Smooth Left-to-Right Scroll */
@keyframes infinite-scroll {
  0% {
    transform: translateX(0); /* Start with videos fully visible */
  }
  100% {
    transform: translateX(-33%); /* Move left halfway, then reset seamlessly */
  }
}
.carousel-track:hover {
  animation-play-state: paused;
}

.container {
  display: flex;
  flex-direction: column; /* Stack items vertically */
  gap: 0px;
  max-width: 1000px;
  margin: clamp(3rem, 6vw, 4rem) auto;
  padding: clamp(1.5rem, 3vw, 2rem);
}

.item {
  display: flex;
  align-items: center;
  flex-direction: row; /* Default row layout */
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: 0;
  transition: transform 0.3s ease;
}

.item:hover {
  transform: translateY(-5px);
}

.item:nth-child(even) {
  flex-direction: row-reverse;
}

.item img {
  width: clamp(19.5rem, 39vw, 26rem);
  height: auto;
  border-radius: clamp(0.375rem, 0.75vw, 0.5rem);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional shadow for styling */
}

.item .content {
  flex: 1;
  max-width: 500px;
}

.item h3 {
  font-size: clamp(1.95rem, 3.9vw, 2.6rem);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  color: #000;
}

.item p {
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.6;
  color: #000;
}

@media (max-width: 768px) {
  .item {
    flex-direction: column; /* Stack image and content vertically */
  }
  .item img {
    margin-bottom: clamp(0.75rem, 1.5vw, 1rem); /* Add space between the image and text */
    width: 100%; /* Make the image take up the container's width */
    max-width: 416px; /* Limit the image width */
    margin-left: auto; /* Center the image */
    margin-right: auto;
  }
  .item .content {
    text-align: center; /* Center-align the text for a balanced look */
  }
  .item:nth-child(even) {
    flex-direction: column;
  }
}
.footer {
  background-color: #dce0da; /* Light gray background */
  padding: 20px 0;
  text-align: center;
  margin-top: 40px;
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-content p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 15px;
}

.footer-links a {
  font-size: 14px;
  color: #124f54; /* Matches primary color */
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #f00; /* Highlight color on hover */
}

/*# sourceMappingURL=styles.css.map */
