

video::-webkit-media-controls-enclosure {
overflow: hidden !important;
}

video::-webkit-media-controls-download-button {
display: none !important;
}


/* Hide Fullscreen Button */
video::-webkit-media-controls-fullscreen-button {
display: none !important;
}

/* Hide Download Button */
video::-webkit-media-controls-download-button {
display: none !important;
}

/* Hide More Options (Three Dots Menu) */
video::-webkit-media-controls-timeline {
overflow: hidden !important;
}


/* Hide the more options (three-dot) button */
video::-webkit-media-controls-panel {
overflow: hidden !important;
}

video::-webkit-media-controls {
display: flex !important;
}

video::-webkit-media-controls-enclosure {
overflow: hidden !important;
}

video::-webkit-media-controls-button {
display: none !important;
}


.container {
    max-width: 1100px;
    text-align: center;
    padding: 20px;
  
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    text-align: center;
    padding: 20px;
}

.work-label {
    color: #f16232;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.main-heading {
    font-size: 2.5rem;
    font-weight: bold;
    color: #212121;
    margin-top: 10px;
    line-height: 1.3;
}

.underline {
    width: 60px;
    height: 3px;
    background-color: #f16232;
    margin: 15px auto;
}

.description {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.highlights {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 20px;
}

.highlights span {
    color: #f16232;
}

.caption {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 10px;
}

.caption span {
    color: #f16232;
}

@media (max-width: 1024px) {
    .video-container {
        width: 75%;
        margin: 0 auto;
       margin-left: 10%;

        
    }

    .highlights{
        margin-bottom: 10px;
    }

  
    .overlay-video {
    
        width: 30%;

       
    }
}





@media (max-width: 768px) {
    .container {
        max-width: 90%;
        padding: 15px;
    }
    .main-heading {
        font-size: 2rem;
    }
    .description {
        font-size: 1rem;
    }
    .highlight {
        font-size: 1rem;
    }
    .video-section {
        display: none;
    }
    .overlay-video {
      display: none;
    }
}

@media (max-width: 480px) {
    .container {
        max-width: 95%;
    }
    .main-heading {
        font-size: 1.8rem;
    }
    .description {
        font-size: 0.9rem;
    }
    .highlight {
        font-size: 0.9rem;
    }
   
}



.video-section {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 20px;
    margin: 0 auto;
}

.video-container {
    position: relative; /* Changed from absolute */
    width: 85%;
    background: #fff;
   top: 50px;
    padding: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 15px;
   
}

.video-container video,
.overlay-video video {
    width: 100%;
    height: auto;
    display: block;
}

.overlay-video {
    position: relative; /* Changed from absolute */
    width: 40%;
    background: #fff;
    padding: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    top: -85px;
    left: -50px;
}

@media (max-width: 768px) {
    .video-container,
    .overlay-video {
       display: none;
    }
}

