        /* Emcee Hero Section */
    .emcee-hero {
        position: relative;
        padding: 180px 0 290px;
        background: url('../images/_8868_Photoshop.jpg') no-repeat center center;
        background-size: cover;
        color: white;
        text-align: center;
    }
    
    .emcee-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.6);
    }
    
    .emcee-hero .container {
        position: relative;
        z-index: 2;
    }
    
    .emcee-hero h1 {
        color: var(--light-color);
        font-size: 3rem;
        margin-bottom: 25px;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    }
    
    .emcee-hero p.lead {
        font-size: 1rem;
        margin-bottom: 20px;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    }
    
    .emcee-hero .location {
        font-weight: bold;
        font-size: 1.2rem;
    }

    /* Section Styles */
    .content-section {
        padding: 80px 0;
    }
    
    .content-section h2 {
        color: var(--dark-color);
        margin-bottom: 30px;
        font-family: 'Oswald', sans-serif;
        text-transform: uppercase;
    }
    
    .content-section.white-bg {
        background-color: white;
    }
    
    .content-section.light-bg {
        background-color: var(--light-color);
    }
    
    .photo-with-text {
        position: relative;
        margin-bottom: 40px;
    }
    
    .photo-with-text img {
        width: 100%;
        height: auto;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
     /* Video Section - Fixed Rectangle Shape */
    .video-section {
        padding: 60px 0;
        background-color: var(--light-color);
        text-align: center;
    }

    .video-section .container {
        max-width: 800px;
        margin: 0 auto;
    }

    .video-section h2 {
        color: var(--primary-color);
        margin-bottom: 15px;
    }

    .video-section p {
        margin-bottom: 30px;
        font-size: 1.1rem;
    }

    /* This will FORCE a 16:9 rectangle */
    .video-wrapper {
        position: relative;
        width: 100%;
        padding-bottom: 56.25%; /* 16:9 aspect ratio (9/16=0.5625) */
        height: 0;
        overflow: hidden;
        margin: 0 auto;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important;
        border: none;
    }

    /* Floating video style */
    .mini-video {
        position: fixed;
        bottom: 20px;
        left: 20px;
        width: 320px;
        height: 180px;
        padding-bottom: 0;
        z-index: 9999;
        background: #000;
        border-radius: 8px;
        transition: all 0.3s ease;
        display: none;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    }

    .mini-video .video-inner {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .mini-video iframe {
        z-index: 1;
    }

    /* Professional Close Button */
    .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        background: rgba(0,0,0,0.7);
        color: white;
        border: none;
        border-radius: 50%;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        transition: all 0.2s ease;
        padding: 0;
    }

    .close-btn:hover {
        background: rgba(0,0,0,0.9);
        transform: scale(1.1);
    }

    .close-btn svg {
        width: 16px;
        height: 16px;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .mini-video {
            width: 240px;
            height: 135px;
            bottom: 15px;
            left: 15px;
        }
        
        .close-btn {
            width: 28px;
            height: 28px;
            top: 8px;
            right: 8px;
        }
        
        .close-btn svg {
            width: 14px;
            height: 14px;
        }
    }

    @media (max-width: 480px) {
        .mini-video {
            width: 250px;
            height: 160px;
            bottom: 10px;
            left: 10px;
        }
        
        .close-btn {
            width: 24px;
            height: 24px;
            top: 6px;
            right: 6px;
        }
        
        .close-btn svg {
            width: 12px;
            height: 12px;
        }
    }
    /* CTA Section */
    .emcee-cta {
        padding: 80px 0;
        background-color: var(--primary-color);
        color: white;
        text-align: center;
    }
    
    .emcee-cta h2 {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }
    
    .emcee-cta .btn {
        padding: 15px 40px;
        font-size: 1.2rem;
        border-radius: 0;
        background-color: white;
        color: var(--primary-color);
        font-weight: bold;
    }
    
    .emcee-cta .btn:hover {
        background-color: var(--dark-color);
        color: white;
    }

    /* Responsive Styles */
    @media (max-width: 991.98px) {
        .emcee-hero h1 {
            font-size: 2.5rem;
        }
        
        .emcee-hero p.lead {
            font-size: 1.2rem;
        }
        
        .content-section {
            padding: 60px 0;
        }
    }

    @media (max-width: 767.98px) {
        .emcee-hero {
            padding: 120px 0 80px;
        }
        
        .emcee-hero h1 {
            font-size: 2rem;
        }
        
        .emcee-hero p.lead {
            font-size: 1.1rem;
        }
        
        .emcee-cta h2 {
            font-size: 2rem;
        }
    }


/* Emcee hero positioning */
@media (min-width: 992px) {
    .emcee-hero .row {
        justify-content: flex-end;
    }
    
    .emcee-hero .col-lg-10 {
        max-width: 50%;
        flex: 0 0 50%;
    }
}

 /* Brands Section */
.brands-section {
    padding: 60px 0;
    background-color: var(--light-color);
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 40px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
    margin-top: 40px;
}

.brand-item {
    text-align: center;
    padding: 2px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.brand-item img {
    max-width: 100%;
    height: auto;
    max-height: 120px;
    width: auto;
    filter: none !important;      /* No grayscale by default */
    opacity: 1 !important;
    transition: all 0.3s ease;
}

.brand-item:hover img {
    transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 767.98px) {
    .brand-item img {
        max-height: 100px;
    }
} 