.ic-header {
    position: relative;
    overflow: hidden;
}

.ic-header-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.ic-header-video__iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Ensure content stays above video */
.ic-header .slider-container {
    position: relative;
    z-index: 1;
}

/* Mobile optimization */
@media (max-width: 768px) {
    .ic-header-video__iframe {
        width: 100vw;
        height: 100vh;
        min-width: 100vw;
        min-height: 100vh;
    }
}

.video-wrap {
	height: auto;
	max-width: 100%;
	overflow: hidden;
	padding-bottom: 56.25%;
	position: relative;

	iframe, object, embed {
		height: 100%;
		left: 0;
		position: absolute;
		top: 0;
		width: 100%;
	}
}

.ic-header-with-video {
    padding-bottom: 50px;
    margin-top: 130px;
}

@media (max-width: 1200px) {
    .ic-header-with-video {
        padding-bottom: 20px;
        margin-top: 80px;
    }
}
