.about-youtube .row {
  display: flex;
  align-items: stretch; /* Make both columns equal height */
  flex-wrap: wrap;
}



.video-box {
  height: 100%; /* Fill full column height */
}



.video-box iframe {
  width: 100%;
  height: 100%; /* Match right column height */
  border: 0;
}

/* ✅ Orange text */

.highlight-text {
    font-size: 35px;
    color: #F4801E;
}

.sub-text{
    font-size: 18px;
}



/* ✅ Video Box Styling */

.video-box {
  background: #000;
  padding: 15px;
  border-radius: 25px;
  border: 3px solid #F4801E;
  overflow: hidden;
}



.video-box iframe {
  width: 100%;
  height: 350px;
  border: 0;
}



/* ✅ Responsive Fix */
@media (max-width: 991px) {
  .about-youtube .row {
    display: block;
  }

  .sub-text {
    font-size: 18px;
    text-align: center;
  }



  .video-box iframe {
    height: 260px; /* Keep a nice aspect ratio on mobile */
  }

}

@media (max-width: 767px) {

  .highlight-text {
    text-align: center;
  }

  .video-box iframe {
    height: 260px;
  }

  .sub-text {
    text-align: center;
  }

}