.showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px; /* space between video and text */
  padding: 50px 5%;
  flex-wrap: nowrap; /* no stacking */
}

.video-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  width: auto; /* matches phone width */
  height: 1080px; /* matches phone height */

  background: url('../assets/images/viber_image_2025-08-13_09-06-08-970.jpg') no-repeat center center;
  background-size: cover;

  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  overflow: hidden;
  margin-top: 2rem;
}

.video-wrapper video {
  position: absolute;
  top: 50%;
  right: 70%;
  transform: translate(50%, -50%);

  width: 300px;
  height: 630px;

  object-fit: cover;
  background: transparent;
  pointer-events: none;
  border-radius: 10px;
}

.text-content {
  position: relative;
  bottom: 20px;
  left: 25%;
  transform: translateX(-50%);
  color: #000;
  text-align: center;
  max-width: 90%;
  padding: 12px 18px;
  border-radius: 16px;
  font-family: "Arial Narrow", Arial, sans-serif;
}

.text-content h3 {
  font-size: 2rem;
  font-weight: 100;
  margin-bottom: 20px;
  line-height: .8;
}

.text-content p {
  font-size: 1rem;
  font-weight: 100;
  line-height: 1.4;
  font-style: italic;
  color: #686565;
}

.logo-img {
  height: 150px;
  width: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}
.showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px; /* space between video and text */
  padding: 50px 5%;
  flex-wrap: nowrap; /* desktop: side-by-side */
}

.video-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  width: auto; /* matches phone width */
  height: 1080px; /* matches phone height */

  background: url('../assets/images/viber_image_2025-08-13_09-06-08-970.jpg') no-repeat center center;
  background-size: cover;

  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  overflow: hidden;
  margin-top: 2rem;
}

.video-wrapper video {
  position: absolute;
  top: 50%;
  right: 70%;
  transform: translate(50%, -50%);

  width: 300px;
  height: 630px;

  object-fit: cover;
  background: transparent;
  pointer-events: none;
  border-radius: 10px;
}

.text-content {
  position: relative;
  bottom: 20px;
  left: 25%;
  transform: translateX(-50%);
  color: #000;
  text-align: center;
  max-width: 90%;
  padding: 12px 18px;
  border-radius: 16px;
  font-family: "Arial Narrow", Arial, sans-serif;
}

.text-content h3 {
  font-size: 2rem;
  font-weight: 100;
  margin-bottom: 20px;
  line-height: .8;
}

.text-content p {
  font-size: 1rem;
  font-weight: 100;
  line-height: 1.4;
  font-style: italic;
  color: #686565;
}

.logo-img {
  height: 150px;
  width: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}




/* ===== ABOUT PREVIEW SECTION (Homepage Only) ===== */
.about-preview-section {
  display: flex;
  flex-direction: row; 
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: nowrap; 
  padding: 50px 5%;
}

.about-preview-section .about-img {
  flex: 1 1 50%;
  width: 50%;
  height: auto;
  max-height: 700px;
  object-fit: cover;
  display: block;

  opacity: 0;
  transform: perspective(1000px) translateY(30px) rotateX(10deg);
  transform-origin: center;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.about-preview-section .about-img.visible {
  opacity: 1;
  transform: perspective(1000px) translateY(0) rotateX(0deg);
}

.about-preview-section .about-img.hover-3d {
  transition: transform 0.1s ease-out;
}

.about-preview-section .about-content {
  flex: 1 1 50%;
  padding: 30px;
  text-align: left;
}

.about-preview-section .about-content h3 {
  font-size: 2.6rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.about-preview-section .about-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #252522;
  margin-bottom: 20px;
}

