body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    overflow-x: hidden;
    
}
html, body {
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #fff !important;
    font-size: 15px;
}
.video-section-container {
    max-width: 1400px;
    margin: auto;
    /* padding: 20px; */
}

/* Main layout */
.main-movie {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    /* margin: auto; */
    /* align-items: center; */
    justify-content: center;
    
}

/* Video section styles */
.video-section {
    flex: 0 0 26%;
    min-width: 0;
    position: sticky;
    top: 20px;
    margin: auto 0px;

    overflow: hidden;
}

.movie-poster-container {
    width: 100%;
    border-radius: 12px;
    /* padding: 20px; */
    overflow: hidden;
}

.movie-poster {
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding-bottom: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
}


.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.pricing-table th, .pricing-table td {
    border: 1px solid #fff;
    padding: 12px;
    text-align: left;
    width:25%;
}

.pricing-table th {
    background-color: #f5f5f5;
}

.input-number {
    width: 80px;
    padding: 5px;
}

.total-row {
    background-color: #f9f9f9;
    font-weight: bold;
}

.price-cell {
    text-align: right;
}


/* new video section updated */
.video-section {
    flex: 0 0 35%;
    min-width: 0;
    position: sticky;
    top: 20px;
    margin: 40px 0px;
    height: 600px; /* Increased height */
    overflow: hidden;
}

.movie-poster-container {
    width: 100%;
    height: 100%; /* Make container fill full height */
    border-radius: 12px;
    overflow: hidden;
}

.movie-poster {
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding-bottom: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    height: 100%; /* Make poster fill full height */
}

.video-wrapper {
    position: relative;
    flex: 0 0 auto;
    width: 460px;
    height: 100%; /* Make wrapper fill full height */
}

.video-size {
    width: 100%;
    height: 100%; /* Make video fill full height */
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}


.video-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(175, 175, 175, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 10px;
}

/* Options section styles */
.options-section {
    flex: 0 0 55%;
    padding: 20px;
    width: 55%;
}

/* Scroll container styles */
.scroll-container {
    width: 100%;
    overflow-x: auto;
    margin: 4px 0;
    padding-bottom: 10px;
}

.scroll-box {
    display: flex;
    gap: 15px;
    padding-bottom: 10px;
    min-width: 0;
}

/* Video card styles */
.video-select-card {
    flex: 0 0 150px;
    width: 180px;
    min-width: 120px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    height: min-content;
}

.video-select-card:hover {
    transform: translateY(-5px);
}

.video-select-card img {
    width: 150px;
    height: 200px;
    object-fit: cover;
}
.video-type{
    font-size: 12px;
    color: #333;
    margin: 10px 0;
}

.video-select-card-content {
    padding: 12px;
}

.video-select-card-content p {
    font-size: 12px;
    margin: 0;
    font-family: "Helvetica", Arial, sans-serif !important;

}

.video-type {
    /* font-size: 16px; */
    margin: 0;
    text-align: center;
    /* font-weight: bold; */
}

.video-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    
}

/* Form styles */
.form-element {
    display: none;
    gap: 16px;
    margin: 20px 0;
    align-items: center;
    transition: all 0.3s ease;
    max-height: 0;
    overflow: hidden;
}

.form-element.active {
    display: flex;
    max-height: 100px;
    margin: 5px 0;
}

.form-element2 {
    display: flex;
    gap: 15px;
    /* margin: 20px 0 45px; */
    align-items: center;
}

.form-label {
    font-weight: bold;
    width: 37%;
    color: #555;
    font-size: 14px;
}
.text-end{
    text-align:center;
}

.input-number {
    width: 100%;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}
.video-heading{
    font-size: 16px;
    margin-bottom: 10px;
    color: #505050;
    font-family: "Helvetica", Arial, sans-serif !important;
    letter-spacing:0px;
    font-weight: 600;
}
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 42px;
    height: 17px;
  }
  
  .toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    border-radius: 24px;
    transition: 0.4s;
    margin-bottom: 0 !important;
  }

  
  .slider:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: 0.4s;
  }
  
  input:checked + .slider {
    background-color: #4caf50;
  }
  
  input:checked + .slider:before {
    transform: translateX(26px);
  }
  
.video-para{
    color: #292929;
    font-size: 16px;
    font-family: "Helvetica", Arial, sans-serif !important;

}
.price-heading{
    color: #292929;
    font-family: "Helvetica", Arial, sans-serif !important;
    margin:5px 0px;
    font-size: 17px;
    font-weight: 400;
}
.cat-heading{

    /* color: #707070; */
    font-size: 14px;
    font-family: "Helvetica", Arial, sans-serif !important;
    margin: 15px 0px 11px;
    font-weight: 600;
}
.heading-section{
    /* padding:0px 25px ; */
    max-width: 1400px;
    margin: auto;
}
/* Button styles */
.button-group {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.submit-btn-2 {
    padding: 12px;
    background-color: #fff;
    /* color: white; */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: 500;
    width: 50%;
    border: 1px solid;
    align-items: center;
    text-align: center;
    justify-content: center;
    /* margin: auto; */
    display: flex;
    font-size:16px;
    width:36%;
    font-weight: 600;
}
.blue-color{
    background-color: #3c7cf9;
    color:white;
}
.cachy-test{
    font-size: 12px;
    font-weight: bold;
    background: linear-gradient(90deg, #000000, #00bcd4, #673ab7);
    background-size: 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-animation-text 3s infinite;
    margin:10 0px;
  }

  @keyframes gradient-animation-text {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  .danger{
    color:red;
    font-weight: 600;
}
.gst{
    font-size:12px;
}
.submit-btn-2 :hover {
    background-color: #532a9d;
}

/* Movies list section */
.movies-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin:50px;
    box-sizing:border-box;
}

.movie-item {
    text-align: center;
    position: relative;
}

.movie-item video {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.movie-item p {
    margin: 5px 0;
    font-weight: bold;
}

.badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: #ff4081;
    color: white;
    padding: 5px 8px;
    border-radius: 3px;
    font-size: 10px;
}

.badge.hd {
    background-color: #673ab7;
}

.badge.free {
    background-color: #4caf50;
}

.badge.pro {
    background-color: #ff9800;
}

/* Custom scrollbar */
.movie-poster::-webkit-scrollbar,
.scroll-container::-webkit-scrollbar {
    height: 8px;
}

.movie-poster::-webkit-scrollbar-track,
.scroll-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.movie-poster::-webkit-scrollbar-thumb,
.scroll-container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.movie-poster::-webkit-scrollbar-thumb:hover,
.scroll-container::-webkit-scrollbar-thumb:hover {
    background: #555;
}


/* bread crum */

.breadcrumb {
    display: flex;
    align-items: center;
    font-size: 12px;
    margin:5px 0px;
  }
  
  .breadcrumb-item {
    text-decoration: none;
    color: #007bff;
    padding: 0 5px;
    transition: color 0.3s ease;
  }
  
  .breadcrumb-item:hover {
    color: #0056b3;
  }
  
  .breadcrumb-separator {
    color: #6c757d;
  }
  
  .breadcrumb-current {
    color: #6c757d;
    font-weight: bold;
  }
  
/* Responsive styles */
@media (max-width: 968px) {
    .main-movie {
        flex-direction: column;
    }

    .video-section {
        height: auto;
        position: relative;
    }

    .movie-poster {
        height: 400px;
    }

    .video-size {
        height: 400px;
    }

    .video-section,
    .options-section {
        flex: none;
        width: 100%;
    }

    .form-element {
        flex-direction: row;
        gap: 8px;
    }
    .movies-list {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 25px;
        margin:20px
    }
    .submit-btn-2{
        width:50%;
    }

}

/* Responsive styles update */
@media (max-width: 968px) {
    .video-section {
        height: min-content; /* Slightly smaller height on mobile */
        margin:0px
    }

    .movie-poster {
        height: 100%;
    }

    .video-size {
        height: 100%;
    }
}


.checkbox-container {
    display: flex;
    align-items: baseline;
    margin-bottom: 20px;
    }

    .checkbox-container input[type="checkbox"] {
    margin-right: 10px;
    }

    .checkbox-container label {
    font-size: 16px;
    color: #333;
    margin-bottom: 0;
    font: 600;
    }

    .checkbox-container label a {
    color: #007BFF;
    text-decoration: none;
    }

    .checkbox-container label a:hover {
    text-decoration: underline;
    }


  .video-frame {
      position: relative;
      width: 100%;
      overflow: hidden;
      border-radius: 8px;
      cursor: pointer;
      margin: auto;
      transform: translateY(-5px);
    box-shadow: 2px 12px 26px -10px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

  }

  .video-frame video {
      width: 100%;
      object-fit: cover;
  }
  .video-frame .thumbnail {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      /* border-radius: 8px; */
      z-index: 1;
      border:none;
  }
  .bg_video_banner{
    background-image: url("./assets/VIDEOPAGEBANNERIMAGE.webp") ;
    background-size:cover;
    background-repeat:no-repeat;
    padding-top: 150px;
    margin-bottom:100px;
    padding-bottom: 100px;
    width: 100%;
  }
  .video_box_tab{
    background: #F6EBEB;
    width: 200px;
    border-radius:10px ;
    padding:20px 5px 0px 5px ;
  
  }
  .video_tab_img{
    width: 80px;  transform:translateY(-60px)
  } 
  .video_tab_pera{
    font-size:20px;
    font-weight:500;
    padding-bottom: 20px ;
    line-height:100% ; 
    transform:translateY(-40px)
  }
  .tab-container::-webkit-scrollbar {
          display: none;
    }
  @media screen and (max-width: 650px) {
      .videothumb {
          width: 90%;
      }
      .tab-container {
      display: flex;
      justify-content: space-around;
      max-width: 1000px;
      margin: 0 auto;
      overflow:scroll;
      transform:translateY(100%)

  }
  .video_box_tab{
    width: 144px;
  }
  .video_tab_img{
    width: 70px;  transform:translateY(0px)
  } 
  .video_tab_pera{
    font-size:14px;
    transform:translateY(0px);
    padding-bottom: 20px ;
  }
  .active-tab .video_tab_pera {
  padding-bottom: 10px ;
  } 
  .active-tab .video_tab_img {
    width: 80px;
  }
  .bg_video_banner{
    margin-bottom: 68px;
    padding-top: 100px;
    background-image: url("https://voilastudio.in/assets/video_mob_banner.webp") ;

  }
  }
  @media screen and (max-width: 650px) {
      .videothumb {
          width: 90%;
      }
      .grid-container {
        grid-template-columns: repeat(1, 1fr);
      }
      
  }
