.container-why {
  min-height: 90vh;
}

.left-section-why {

  padding: 60px 40px;
  position: relative;
  background-color: #111;
  overflow: hidden;
  z-index: 0;
}


.left-section-why .tg-element-title h4 {
  color: #fff;
}

.left-section-why .tg-element-title {
  color: #fff;
}

.corner-square-why {
  width: 10px;
  height: 10px;
  background-color: #0981d1;
  position: absolute;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.corner-square-why.visible-why {
  opacity: 1;
  transform: scale(1);
}

.top-left-why {
  top: 0;
  left: 0;
}

.top-right-why {
  top: 0;
  right: 0;
}

.left-section-why h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 30px;
}

.left-section-why p {
  font-size: 17px;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 700px;
}

.progress-title-why {
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 20px;
  font-size: 16px;
  color: #fff;
}

.progress-wrapper-why {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.progress-bar-why {
  position: relative;
  flex: 1;
  height: 4px;
  background-color: #444;
  overflow: hidden;
}

.progress-fill-why {
  height: 100%;
  background-color: #0981d1;
  width: 0%;
  transition: width 2.5s ease-out;
}

.progress-percent-why {
  font-size: 14px;
  min-width: 40px;
  text-align: right;
  color: #ffffff;
}

.right-section-why {

  background: linear-gradient(to top left, #0981d1, #000000 50%);
}




/* cube */




.main-container-1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #111;
  padding: 6% 3%;

}


.content-panel-1 {
  width: 30%;
  padding: 20px;
  text-align: center;
}

.content-panel-1 h2 {
  font-size: 2.5rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: 'Chakra Petch', sans-serif !important;
  color: #fff;
}

.content-panel-1 p {
  font-size: 1rem;
  line-height: 1.6;

  color: #fff;
}

.action-button-1 {
  margin-top: 20px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.left-panel-1 .action-button-1 {
  background-color: #fff;
  color: #000;
}

.right-panel-1 .action-button {
  background-color: #ff5722;
  color: #fff;
}


.cube-wrapper-1 {
  width: 400px;
  height: 400px;
  perspective: 1000px;
  margin: 0 5%;
  z-index: 1;
}


.cube-1 {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: rotate-vertical 20s infinite linear;
}

.face-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.view-icon-1 {
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 1.5rem;
  background-color: #0981d1;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  color: white;

}

.face-1:hover .view-icon-1 {
  opacity: 1;
  pointer-events: auto;

}


.front-1 {
  transform: translateZ(200px);
}

.back-1 {
  transform: scaleY(-1) translateZ(-200px);

}

.right-1 {
  transform: rotateY(90deg) translateZ(200px);
}

.left-1 {
  transform: rotateY(-90deg) translateZ(200px);
}

.top-1 {
  transform: rotateX(90deg) translateZ(200px);
}

.bottom-1 {
  transform: rotateX(-90deg) translateZ(200px);
}

@keyframes rotate-vertical {
  from {
    transform: rotateX(0deg);
  }

  to {
    transform: rotateX(360deg);
  }
}


.modal-1 {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.modal-content-1 {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.close-btn-1 {
  position: absolute;
  top: 20%;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

@media (max-width: 768px) {
  .main-container-1 {
    flex-direction: column;

    align-items: baseline;

  }


  .content-panel-1 {
    width: 100%;
    padding: 20px;
  }
}

@media (max-width: 1000px) {
  .main-container-1 {
    flex-direction: column;

    align-items: center;

  }


  .content-panel-1 {
    width: 100%;
    padding: 20px;
  }

  .cube-wrapper-1 {
    width: 400px;
    height: 400px;
    perspective: 1000px;
    margin: 15% 5%;
    z-index: 1;
  }
}

@media (max-width: 640px) {
  .cube-wrapper-1 {
    width: 400px;
    height: 400px;
    perspective: 1000px;
    margin: 27% 5% !important;
    z-index: 1;
  }
}




#rippleCanvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

.why-choose-video {

  object-fit: cover;
  background-size: cover;
  width: 100%;
  height: 100%;
}