.million{
    color:#90b61c !important;
}
.million::before{
    content: "+";
}
.million::after{
    content: "M";
}
.service-item .overlay{
    background-color: #90b61c !important;
}
.service-item .info-title{
    background: #90b61c !important;
}
.service-item .info-title i{
    background: #90b61c !important;
}
.site-heading h2::after,.site-heading h2::before{
    background: #90b61c !important;
}
.fa-angle-right:before,.fa-angle-left:before {
    color:#90b61c !important;
}
.about-content-area .info > ul li::after{
    background-color:rgb(144, 182, 28, 0.2)  !important;
    
}
.info ul{
    margin-left:40px
}

/* Video Section Wrapper */
.video-section-wrapper {
    width: 100%;
    background: #000;
    display: flex;
    flex-direction: column;
}

/* Video Container */
.video-container {
    margin-top: 80px; /* Igual al alto del header */
    height: calc(100vh - 80px); /* Resta la cabecera */
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Mantiene proporciones y llena el espacio */
}


.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-title {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s ease-out;
}

.video-subtitle {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s ease-out 0.3s both;
}


/* Unmute button is now integrated into the progress bar */

/* Video Progress Bar Styles */
.video-progress-container {
    position: relative;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    padding: 15px 20px;
    border-radius: 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.video-controls-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
}

.video-control-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    flex-shrink: 0;
}

.video-control-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: #fff;
    transform: scale(1.1);
}

.video-control-btn:active {
    transform: scale(0.95);
}

.video-progress-bar {
    position: relative;
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    cursor: pointer;
}

.video-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #007bff, #00d4ff);
    border-radius: 3px;
    transition: width 0.1s ease;
    width: 0%;
}

.video-progress-handle {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    cursor: grab;
    transition: all 0.2s ease;
}

.video-progress-handle:hover {
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.video-progress-handle:active {
    cursor: grabbing;
}

.video-time-display {
    display: flex;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 80px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .video-container {
        margin-top: 60px; /* Header más pequeño en tablet */
        height: calc(100vh - 60px);
    }
    
    .video-progress-container {
        padding: 12px 15px;
    }
    
    .video-controls-row {
        gap: 8px;
    }
    
    .video-control-btn {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .video-progress-bar {
        height: 4px;
    }
    
    .video-progress-handle {
        width: 12px;
        height: 12px;
    }
    
    .video-time-display {
        font-size: 10px;
        min-width: 70px;
    }
}

@media (max-width: 480px) {
    .video-container {
        margin-top: 50px; /* Header más pequeño en móvil */
        height: calc(100vh - 50px);
    }
    
    .video-progress-container {
        padding: 8px 12px;
    }
    
    .video-controls-row {
        gap: 6px;
    }
    
    .video-control-btn {
        width: 28px;
        height: 28px;
        font-size: 10px;
    }
    
    .video-time-display {
        font-size: 9px;
        min-width: 60px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive fullscreen video */
@media (max-width: 768px) {
    .video-title {
        font-size: 36px;
    }
    
    .video-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .video-title {
        font-size: 28px;
    }
    
    .video-subtitle {
        font-size: 14px;
    }
}