.heading{
  text-align: center;
  font-size: 4rem;
  color:#333;
  padding:1rem;
  margin:2rem 0;
  background:rgba(116, 62, 0, 0.05);

}

.heading span{
  color:rgb(228, 136, 23);
}
.heading{
  font-size: 3rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    width: 100%;
}

.video-box {
    position: relative;
    width: 100%;
    height:100%;
    padding-top: 56.25%; 
    overflow: hidden;
    border-radius: 10px;
    background-color: #121212;
}

.video-box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height:  100%;
    border: none;
    object-fit: cover;
}