/* Fixed Video Hero Banner Styles */
.fixed-video-hero-banner {
    position: absolute;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
    margin: 0 !important;
    padding: 0 !important;
    top: 0 !important;
    left: 0 !important;
}

/* Override body padding for video hero */
body {
    padding-top: 0 !important;
}

.video-banner-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Video Background */
.hero-video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

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

/* Content Overlay */
.video-content-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 100%;
    text-align: center;
}

.video-content-overlay .container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-direction: column;
}

.hero-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Company Logo */
.company-logo {
    margin-bottom: 2.5rem !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    text-align: center !important;
    flex-direction: column !important;
}

.hero-logo {
    max-height: 140px !important;
    width: auto !important;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.6));
    transition: transform 0.3s ease;
    display: block !important;
    margin: 0 auto !important;
    position: relative;
    left: 0 !important;
    right: 0 !important;
}

.hero-logo:hover {
    transform: scale(1.05);
}

/* Company Name Styling */
.company-name {
    font-size: 3.2rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.9), 
                 0 0 20px rgba(255, 255, 255, 0.1);
    margin-bottom: 0.8rem;
    font-family: 'Playfair Display', 'Times New Roman', serif;
    letter-spacing: 2px;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    line-height: 1.2;
    text-transform: uppercase;
}

.company-name::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #4a7c59, #2c5530, #4a7c59);
    border-radius: 2px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}

.company-tagline {
    font-size: 2.2rem;
    font-weight: 400;
    color: #f8f9fa;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8),
                 0 0 15px rgba(255, 255, 255, 0.1);
    margin-bottom: 3.5rem;
    font-family: 'Playfair Display', 'Times New Roman', serif;
    letter-spacing: 1.2px;
    text-align: center;
    font-style: italic;
    opacity: 0.95;
    line-height: 1.3;
    margin-top: 1.5rem;
}

/* Experience It Button Container */
.hero-button-container {
    margin-top: 2rem;
}

/* Experience It Button */
.btn-experience-it {
    position: relative;
    display: inline-block;
    padding: 18px 40px;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    border: 3px solid #ffffff;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.btn-experience-it:hover {
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.btn-text {
    position: relative;
    z-index: 2;
}

/* Button Rim Animation */
.btn-rim-animation {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ffeaa7, #dda0dd);
    background-size: 400% 400%;
    z-index: -1;
    animation: rimGlow 3s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-experience-it:hover .btn-rim-animation {
    opacity: 1;
}

@keyframes rimGlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .company-logo {
        margin-bottom: 2rem;
    }
    
    .hero-logo {
        max-height: 100px;
    }
    
    .company-name {
        font-size: 2.4rem;
        letter-spacing: 1px;
        margin-bottom: 1rem;
    }
    
    .company-name::after {
        width: 60px;
        height: 2px;
    }
    
    .company-tagline {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
    }
    
    .btn-experience-it {
        padding: 15px 30px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .company-logo {
        margin-bottom: 1.5rem;
    }
    
    .hero-logo {
        max-height: 80px;
    }
    
    .company-name {
        font-size: 2rem;
        letter-spacing: 0.5px;
        margin-bottom: 0.8rem;
    }
    
    .company-name::after {
        width: 50px;
        height: 2px;
    }
    
    .company-tagline {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }
    
    .btn-experience-it {
        padding: 12px 25px;
        font-size: 1.1rem;
    }
}

/* Ensure video banner is above other content */
.fixed-video-hero-banner {
    position: relative;
    z-index: 10;
}

/* Adjust the following hero carousel to be below the video banner */
#heroCarousel {
    position: relative;
    z-index: 5;
}