/* ============================================
   HERO SECTION WITH VIDEO BACKGROUND
   ============================================ */

/* Reset Hero Section Background */
.hero-section, 
.hero-section .container, 
.hero-section .row, 
.hero-section [class*="col-"],
.hero-section [class^="col-"],
.hero-section [class*=" col-"],
.hero-section .col-lg-6,
.hero-section .col-md-6,
.hero-section .col-12,
.hero-section div[class*="col"] {
    background: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
}

/* Hero Section Layout */
.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 600px;
    padding: 80px 0 60px 0;
    margin: 0;
    overflow: hidden;
    left: 0;
    right: 0;
}

/* Background Video */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(4px);
}

/* Overlay */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: rgba(255, 255, 255, 0.25);
}

/* Content Container */
.hero-section .container {
    position: relative;
    z-index: 2;
}
