

.video-container {
  width: 700px;      /* square size (set as needed) */
  height: 750px;
  overflow: hidden;  /* hide overflow so it crops */
  position: relative;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* fills square, crops excess */
}


.video-banner {
  width: 100% !important;
  height: 100vh !important; /* full screen */
  overflow: hidden;
  opacity: 0.7 !important;
}


.tj-slider-item::after {
  background: none !important;
}

.video-banner video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;   /* ensures video fills screen, crops edges */
  transform: translate(-50%, -50%);
  z-index: 0;
}

.choose-box-custom {
  height: 450px;
}


.feature-block {
  margin-bottom: 20px;
}

.feature-header {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}

.check-circle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: red; /* green circle */
  color: white;
  font-size: 12px;
  font-weight: bold;
  margin-right: 10px;
  flex-shrink: 0;
}

.feature-title {
  font-weight: 600;
  font-size: 18px;
  color: #fff;
}

.feature-desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #9692b2;
}

