.voice-hero {
        position: relative;
        padding: 180px 0 200px;
        background: url('../images/voiceover/PHOTO 1_TOP_RJ-99-slider.png') no-repeat center center;
        background-size: cover;
        color: white;
        text-align: center;
    }
    
    .voice-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.6);
    }
    
    .voice-hero .container {
        position: relative;
        z-index: 2;
    }
    
    .voice-hero h1 {
        font-size: 3rem;
        color: var(--light-color);
        margin-bottom: 25px;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    }
    
    .voice-hero p {
        font-size: 1.4rem;
        margin-bottom: 20px;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    }

    /* Content Sections */
    .voice-section {
        padding: 80px 0;
    }
    
    .voice-section.white-bg {
        background-color: white;
    }
    
    .voice-section.light-bg {
        background-color: var(--light-color);
    }
    
    .voice-section h2 {
        color: var(--dark-color);
        margin-bottom: 30px;
        font-family: 'Oswald', sans-serif;
        text-transform: uppercase;
    }
    
    .voice-section img {
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        width: 100%;
        height: auto;
    }

    /* Voice Video Section - Guaranteed Rectangle */
    .voice-video {
        padding: 60px 0;
        background-color: white; /* Changed from var(--light-color) to match your white-bg class */
        text-align: center;
    }

    .voice-video .container {
        max-width: 800px;
        margin: 0 auto;
    }

    .voice-video h2 {
        color: var(--primary-color);
        margin-bottom: 15px;
    }

    .voice-video p {
        margin-bottom: 30px;
        font-size: 1.1rem;
    }

    /* Base floating video style */
.mini-video {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 320px;
  height: 180px;
  background: #000;
  border-radius: 8px;
  z-index: 9999;
  display: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease-in-out;
}

.mini-video .video-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.mini-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

    /* 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;
        }
    }


    /* Rectangular Button Style for Demo Link */
    .demo-link {
        display: inline-block;
        margin-top: 30px;
        padding: 12px 24px;
        font-weight: bold;
        color: white;
        background-color: var(--primary-color);
        border: 2px solid var(--primary-color);
        border-radius: 4px; /* Slightly rounded rectangle */
        text-decoration: none;
        transition: all 0.3s ease;
        text-align: center;
        min-width: 240px; /* Fixed width for perfect rectangle */
    }

    .demo-link:hover {
        background-color: white;
        color: var(--primary-color);
        text-decoration: none;
        box-shadow: 0 2px 10px rgba(241, 35, 122, 0.3);
    }

    .demo-link i {
        margin-left: 8px;
        font-size: 0.9em;
    }

    /* Nuclear Option (if still not working) */
    .video-wrapper {
        aspect-ratio: 16/9 !important;
        padding-bottom: 0 !important;
        height: auto !important;
    }

    .video-wrapper iframe {
        aspect-ratio: 16/9 !important;
    }


    /* Brands Logos Section */
    .brands-logos {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 25px;
        margin: 40px 0;
    }

    .brand-logo {
        height: 80px;
        width: auto;
        max-width: 180px;
        object-fit: contain;
        opacity: 0.9;
        transition: all 0.3s ease;
    }

    .brand-logo:hover {
        opacity: 1;
        transform: scale(1.05);
    }

    .more-badge {
        background: var(--primary-color);
        color: white;
        padding: 8px 16px;
        border-radius: 20px;
        font-weight: bold;
        font-size: 0.9rem;
        display: inline-flex;
        align-items: center;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .brands-logos {
            gap: 15px;
        }
        .brand-logo {
            height: 60px;
            max-width: 170px;
        }
    }

    /* Responsive Styles */
    @media (max-width: 991.98px) {
        .voice-hero h1 {
            font-size: 2.5rem;
        }
        
        .voice-hero p {
            font-size: 1.2rem;
        }
        
        .voice-section {
            padding: 60px 0;
        }
        
    }

    @media (max-width: 767.98px) {
        .voice-hero {
            padding: 120px 0 80px;
        }
        
        .voice-hero h1 {
            font-size: 2rem;
        }
        
        .voice-hero p {
            font-size: 1.1rem;
        }
    }