
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
:root {
    --main-font: 'Poiret One', sans-serif;
    --heading-font: "Kavoon", serif;
    --letter-space:2px;
}
.videoproduct-section {
  padding: 35px;
  text-align: center;
   font-family: var( --main-font); 
  background-color: white;

}

.videoproduct-title {
  font-size: 36px;
  margin-bottom: 40px !important;
  color: rgb(42, 40, 40);
  font-weight: 540;
}

.videoproduct-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.videoproduct-wrapper {
  display: flex;
  transition: transform 0.8s ease-in-out;
}


 .videoproduct-card {
  flex: 0 0 auto;
  width: 100%;
  max-width: 300px;  
  height: 450px;    
  margin-right: 20px; 
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  overflow: hidden;
}

.videoproduct-card iframe {
  width: 100%;
  height: 100%;       
  border: none;
  display: block;
}



.videoproduct-card video {
  width: 100%;
  height: auto;    
  object-fit: contain;
  display: block;
}

.videoproduct-text {
  padding: 10px;
  font-size: 16px;
  font-weight: bold;
  color: #444;
}
@media (max-width: 992px) {
  .videoproduct-title {
  font-size: 29px;
  margin-bottom: 30px !important;
}
.videoproduct-section {
  padding: 20px;
}
}

@media (max-width: 419px)
 {
  .videoproduct-wrapper {
    gap: 15px; 
  }

   .videoproduct-card {
    flex: 0 0 90%; 
    height: 400px; 
    margin: 0 auto; 
  }

  .videoproduct-card iframe {
    height: 100%;
  }

  .videoproduct-card video {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

.videoproduct-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 30px 0px 0px 0px;
}
.videoproduct-btn {
  background-color: #202c3f;
  color: white;
  font-weight: bold;
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid white;
}

.videoproduct-btn:hover {
  background: transparent;
  background-color:white ;
  color: #202c3f;
  border: 2px solid #202c3f ;
}

@media (max-width: 768px) {
  .videoproduct-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
  }

  .videoproduct-btn {
     background-color: #202c3f;
  color: white;
    font-weight: bold;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid white;
  }

  .videoproduct-title {
  font-size: 26px;
}
}
