.main-color-text{
    color:var(--main-color) !important;
}

.color-eighteen-text{
    color:var(--color-eighteen) !important;
}

.video-background-section {
    /* 1. Set position relative so the video can be absolutely positioned inside it */
    position: relative;
    /* 2. Ensure content elements are positioned above the video */
    z-index: 1;
    /* 3. Remove the conflicting background image */
    background: none !important;
    overflow: hidden; /* Ensures video edges are contained */
}

.background-video {
    /* Position the video to cover the entire section */
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1; /* Place it behind all content */
    transform: translate(-50%, -50%);
    object-fit: cover; /* Ensures the video covers the entire area without distortion */
}

/* Optional: Add a dark/light overlay to ensure text readability */
.video-background-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* 40% opaque black overlay */
    z-index: 0;
}

/* Ensure all primary content is above the video and overlay */
.video-content {
    position: relative;
    z-index: 2;
}

.post-date{
    font-size: var(--font-16)!important;
}


