
						
													#Image12{
								box-sizing: border-box;
								background-repeat: no-repeat;
																	background-image: url('/images/cms/FMM-Website-Assets.jpg');
																
																	background-size: cover;
																
																	background-position: Center;
																
																	min-height: 400px;
															}
							
														
														
													
												
					

						/* Full-Width Video Background Section */
.video-hero-section {
    position: relative;
    width: 100%;
    height: 80vh; /* Adjust height as needed */
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000; /* Fallback for slow loading */
}

/* The Background Video */
.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
    filter: brightness(40%) grayscale(30%); /* Dims video so text pops */
}

/* Dark Overlay for extra legibility */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Single Column Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 20px;
    color: #ffffff;
}

.hero-content h2 {
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1;
}

.hero-content .highlight {
    color: #ff6600;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: #f4f4f4;
}

/* Checklist Styling on Top of Video */
.hero-checklist {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.hero-check-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 25px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    cursor: default;
}

.hero-check-item:hover {
    background: rgba(255, 102, 0, 0.2);
    border-color: #ff6600;
}

.hero-box {
    width: 18px;
    height: 18px;
    border: 2px solid #ff6600;
}

.hero-check-item:hover .hero-box {
    background: #ff6600;
}

.hero-check-item span {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .sync-content, .sync-video-container {
        min-width: 100%;
    }
}

/* The Main Section Background */
.glass-container {
    background-color: #e9ecef; /* Light gray industrial steel */
    background-image: radial-gradient(#ced4da 1px, transparent 1px);
    background-size: 30px 30px; /* Subtle grid pattern for 3D depth */
    padding: 80px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

:root {
    --fmm-orange: #ff6600;
    --fmm-glass-bg: rgba(255, 255, 255, 0.6);
    --fmm-glass-border: rgba(255, 255, 255, 0.8);
    --fmm-shadow: rgba(0, 0, 0, 0.1);
}

/* The Glass Card */
.glass-card {
    background: var(--fmm-glass-bg);
    backdrop-filter: blur(15px); /* This creates the "frosted" look */
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--fmm-glass-border);
    border-radius: 15px;
    padding: 50px 40px;
    position: relative;
    box-shadow: 
        20px 20px 60px #d1d9e6, 
        -20px -20px 60px #ffffff; /* Neumorphic 3D shadow effect */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* 3D Hover Effect */
.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.15);
    border-top: 4px solid var(--fmm-orange);
}

.engine-tag {
    color: var(--fmm-orange);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: block;
}

.glass-card h2 {
    color: #1a1a1a;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.glass-card p {
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Minimalist List */
.spec-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.spec-list li {
    margin-bottom: 12px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
}

.spec-list li::before {
    content: "";
    width: 10px;
    height: 10px;
    background: var(--fmm-orange);
    border-radius: 50%;
    margin-right: 15px;
    display: inline-block;
}

/* Premium Link */
.glass-btn {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    border-bottom: 2px solid var(--fmm-orange);
    padding-bottom: 5px;
    transition: all 0.3s;
}

.glass-btn:hover {
    color: var(--fmm-orange);
    padding-left: 10px;
}
						
