.elementor-6 .elementor-element.elementor-element-5fee42b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;overflow:visible;}.elementor-6 .elementor-element.elementor-element-c06c609{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;overflow:visible;}.elementor-6 .elementor-element.elementor-element-514b895{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;overflow:visible;}.elementor-6 .elementor-element.elementor-element-5fd6a3e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;overflow:visible;}.elementor-6 .elementor-element.elementor-element-5cb86f8{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;overflow:visible;}.elementor-6 .elementor-element.elementor-element-5cb86f8:not(.elementor-motion-effects-element-type-background), .elementor-6 .elementor-element.elementor-element-5cb86f8 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}.elementor-6 .elementor-element.elementor-element-985d2be{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;overflow:visible;}.elementor-6 .elementor-element.elementor-element-fa2e585{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;overflow:visible;}.elementor-6 .elementor-element.elementor-element-fa2e585:not(.elementor-motion-effects-element-type-background), .elementor-6 .elementor-element.elementor-element-fa2e585 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}/* Start custom CSS for html, class: .elementor-element-3db9a86 *//* WordPress-compatible styles - all prefixed to avoid conflicts */
.hero-section-yt-wrapper {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.hero-section-yt {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
}

/* YouTube video container */
.hero-section-yt-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-section-yt-video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    pointer-events: none; /* Prevents interaction with iframe */
}

.hero-section-yt-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

/* Content styling */
.hero-section-yt-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 30px;
}

.hero-section-yt-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-section-yt-content p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-section-yt-cta {
    display: inline-block;
    background-color: #0073aa; /* WordPress admin color */
    color: #ffffff;
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.hero-section-yt-cta:hover {
    background-color: #005a87;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Left side PDF button - WordPress style */
.hero-section-yt-pdf-button {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero-section-yt-pdf-icon {
    width: 70px;
    height: 70px;
    background-color: #dc3232; /* WordPress red */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 3px solid #ffffff;
}

.hero-section-yt-pdf-icon:hover {
    background-color: #b22222;
    transform: scale(1.1);
}

.hero-section-yt-pdf-label {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 10px 18px;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

/* Right side social media buttons - WordPress style */
.hero-section-yt-social {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hero-section-yt-social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
}

.hero-section-yt-social-icon.facebook {
    background-color: #3b5998;
}

.hero-section-yt-social-icon.twitter {
    background-color: #1da1f2;
}

.hero-section-yt-social-icon.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.hero-section-yt-social-icon.linkedin {
    background-color: #0077b5;
}

.hero-section-yt-social-icon:hover {
    transform: scale(1.1);
}

.hero-section-yt-social-label {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #ffffff;
    text-align: center;
    position: absolute;
    right: 70px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.hero-section-yt-social-icon:hover .hero-section-yt-social-label {
    opacity: 1;
}

/* Responsive adjustments for WordPress */
@media (max-width: 1200px) {
    .hero-section-yt-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero-section-yt-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-section-yt-content p {
        font-size: 1.1rem;
    }
    
    .hero-section-yt-pdf-button {
        left: 20px;
    }
    
    .hero-section-yt-social {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .hero-section-yt {
        height: 90vh;
        min-height: 500px;
    }
    
    .hero-section-yt-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-section-yt-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .hero-section-yt-pdf-icon,
    .hero-section-yt-social-icon {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }
    
    .hero-section-yt-social-label {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-section-yt {
        height: 85vh;
        min-height: 450px;
    }
    
    .hero-section-yt-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-section-yt-pdf-button {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 30px;
        width: 100%;
        order: 3;
    }
    
    .hero-section-yt-social {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 20px;
        width: 100%;
        order: 2;
        gap: 15px;
    }
    
    .hero-section-yt-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        order: 1;
    }
    
    .hero-section-yt-cta {
        order: 4;
        margin-top: 20px;
    }
}

/* Video control button */
.hero-section-yt-video-control {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 4;
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
}

.hero-section-yt-video-control:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

/* Loading indicator */
.hero-section-yt-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

.hero-section-yt-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: hero-section-yt-spin 1s ease-in-out infinite;
}

@keyframes hero-section-yt-spin {
    to { transform: rotate(360deg); }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c5701dc *//* WordPress-compatible styles - all prefixed to avoid conflicts */
.hero-section-yt-wrapper {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.hero-section-yt {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
}

/* YouTube video container */
.hero-section-yt-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-section-yt-video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    pointer-events: none; /* Prevents interaction with iframe */
}

.hero-section-yt-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

/* Content styling */
.hero-section-yt-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 30px;
}

.hero-section-yt-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-section-yt-content p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-section-yt-cta {
    display: inline-block;
    background-color: #0073aa; /* WordPress admin color */
    color: #ffffff;
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.hero-section-yt-cta:hover {
    background-color: #005a87;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Left side PDF button - WordPress style */
.hero-section-yt-pdf-button {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero-section-yt-pdf-icon {
    width: 70px;
    height: 70px;
    background-color: #dc3232; /* WordPress red */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 3px solid #ffffff;
}

.hero-section-yt-pdf-icon:hover {
    background-color: #b22222;
    transform: scale(1.1);
}

.hero-section-yt-pdf-label {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 10px 18px;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

/* Right side social media buttons - WordPress style */
.hero-section-yt-social {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hero-section-yt-social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
}

.hero-section-yt-social-icon.facebook {
    background-color: #3b5998;
}

.hero-section-yt-social-icon.twitter {
    background-color: #1da1f2;
}

.hero-section-yt-social-icon.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.hero-section-yt-social-icon.linkedin {
    background-color: #0077b5;
}

.hero-section-yt-social-icon:hover {
    transform: scale(1.1);
}

.hero-section-yt-social-label {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #ffffff;
    text-align: center;
    position: absolute;
    right: 70px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.hero-section-yt-social-icon:hover .hero-section-yt-social-label {
    opacity: 1;
}

/* Responsive adjustments for WordPress */
@media (max-width: 1200px) {
    .hero-section-yt-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero-section-yt-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-section-yt-content p {
        font-size: 1.1rem;
    }
    
    .hero-section-yt-pdf-button {
        left: 20px;
    }
    
    .hero-section-yt-social {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .hero-section-yt {
        height: 90vh;
        min-height: 500px;
    }
    
    .hero-section-yt-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-section-yt-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .hero-section-yt-pdf-icon,
    .hero-section-yt-social-icon {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }
    
    .hero-section-yt-social-label {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-section-yt {
        height: 85vh;
        min-height: 450px;
    }
    
    .hero-section-yt-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-section-yt-pdf-button {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 30px;
        width: 100%;
        order: 3;
    }
    
    .hero-section-yt-social {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 20px;
        width: 100%;
        order: 2;
        gap: 15px;
    }
    
    .hero-section-yt-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        order: 1;
    }
    
    .hero-section-yt-cta {
        order: 4;
        margin-top: 20px;
    }
}

/* Video control button */
.hero-section-yt-video-control {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 4;
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
}

.hero-section-yt-video-control:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

/* Loading indicator */
.hero-section-yt-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

.hero-section-yt-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: hero-section-yt-spin 1s ease-in-out infinite;
}

@keyframes hero-section-yt-spin {
    to { transform: rotate(360deg); }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-26f4456 *//* WordPress-compatible styles - all prefixed to avoid conflicts */
.hero-section-yt-wrapper {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.hero-section-yt {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
}

/* YouTube video container */
.hero-section-yt-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-section-yt-video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    pointer-events: none; /* Prevents interaction with iframe */
}

.hero-section-yt-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

/* Content styling */
.hero-section-yt-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 30px;
}

.hero-section-yt-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-section-yt-content p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-section-yt-cta {
    display: inline-block;
    background-color: #0073aa; /* WordPress admin color */
    color: #ffffff;
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.hero-section-yt-cta:hover {
    background-color: #005a87;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Left side PDF button - WordPress style */
.hero-section-yt-pdf-button {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero-section-yt-pdf-icon {
    width: 70px;
    height: 70px;
    background-color: #dc3232; /* WordPress red */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 3px solid #ffffff;
}

.hero-section-yt-pdf-icon:hover {
    background-color: #b22222;
    transform: scale(1.1);
}

.hero-section-yt-pdf-label {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 10px 18px;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

/* Right side social media buttons - WordPress style */
.hero-section-yt-social {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hero-section-yt-social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
}

.hero-section-yt-social-icon.facebook {
    background-color: #3b5998;
}

.hero-section-yt-social-icon.twitter {
    background-color: #1da1f2;
}

.hero-section-yt-social-icon.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.hero-section-yt-social-icon.linkedin {
    background-color: #0077b5;
}

.hero-section-yt-social-icon:hover {
    transform: scale(1.1);
}

.hero-section-yt-social-label {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #ffffff;
    text-align: center;
    position: absolute;
    right: 70px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.hero-section-yt-social-icon:hover .hero-section-yt-social-label {
    opacity: 1;
}

/* Responsive adjustments for WordPress */
@media (max-width: 1200px) {
    .hero-section-yt-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero-section-yt-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-section-yt-content p {
        font-size: 1.1rem;
    }
    
    .hero-section-yt-pdf-button {
        left: 20px;
    }
    
    .hero-section-yt-social {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .hero-section-yt {
        height: 90vh;
        min-height: 500px;
    }
    
    .hero-section-yt-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-section-yt-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .hero-section-yt-pdf-icon,
    .hero-section-yt-social-icon {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }
    
    .hero-section-yt-social-label {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-section-yt {
        height: 85vh;
        min-height: 450px;
    }
    
    .hero-section-yt-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-section-yt-pdf-button {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 30px;
        width: 100%;
        order: 3;
    }
    
    .hero-section-yt-social {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 20px;
        width: 100%;
        order: 2;
        gap: 15px;
    }
    
    .hero-section-yt-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        order: 1;
    }
    
    .hero-section-yt-cta {
        order: 4;
        margin-top: 20px;
    }
}

/* Video control button */
.hero-section-yt-video-control {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 4;
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
}

.hero-section-yt-video-control:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

/* Loading indicator */
.hero-section-yt-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

.hero-section-yt-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: hero-section-yt-spin 1s ease-in-out infinite;
}

@keyframes hero-section-yt-spin {
    to { transform: rotate(360deg); }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e3c4967 *//* WordPress-compatible styles - all prefixed to avoid conflicts */
.hero-section-yt-wrapper {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.hero-section-yt {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
}

/* YouTube video container */
.hero-section-yt-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-section-yt-video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    pointer-events: none; /* Prevents interaction with iframe */
}

.hero-section-yt-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

/* Content styling */
.hero-section-yt-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 30px;
}

.hero-section-yt-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-section-yt-content p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-section-yt-cta {
    display: inline-block;
    background-color: #0073aa; /* WordPress admin color */
    color: #ffffff;
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.hero-section-yt-cta:hover {
    background-color: #005a87;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Left side PDF button - WordPress style */
.hero-section-yt-pdf-button {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero-section-yt-pdf-icon {
    width: 70px;
    height: 70px;
    background-color: #dc3232; /* WordPress red */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 3px solid #ffffff;
}

.hero-section-yt-pdf-icon:hover {
    background-color: #b22222;
    transform: scale(1.1);
}

.hero-section-yt-pdf-label {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 10px 18px;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

/* Right side social media buttons - WordPress style */
.hero-section-yt-social {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hero-section-yt-social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
}

.hero-section-yt-social-icon.facebook {
    background-color: #3b5998;
}

.hero-section-yt-social-icon.twitter {
    background-color: #1da1f2;
}

.hero-section-yt-social-icon.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.hero-section-yt-social-icon.linkedin {
    background-color: #0077b5;
}

.hero-section-yt-social-icon:hover {
    transform: scale(1.1);
}

.hero-section-yt-social-label {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #ffffff;
    text-align: center;
    position: absolute;
    right: 70px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.hero-section-yt-social-icon:hover .hero-section-yt-social-label {
    opacity: 1;
}

/* Responsive adjustments for WordPress */
@media (max-width: 1200px) {
    .hero-section-yt-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero-section-yt-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-section-yt-content p {
        font-size: 1.1rem;
    }
    
    .hero-section-yt-pdf-button {
        left: 20px;
    }
    
    .hero-section-yt-social {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .hero-section-yt {
        height: 90vh;
        min-height: 500px;
    }
    
    .hero-section-yt-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-section-yt-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .hero-section-yt-pdf-icon,
    .hero-section-yt-social-icon {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }
    
    .hero-section-yt-social-label {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-section-yt {
        height: 85vh;
        min-height: 450px;
    }
    
    .hero-section-yt-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-section-yt-pdf-button {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 30px;
        width: 100%;
        order: 3;
    }
    
    .hero-section-yt-social {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 20px;
        width: 100%;
        order: 2;
        gap: 15px;
    }
    
    .hero-section-yt-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        order: 1;
    }
    
    .hero-section-yt-cta {
        order: 4;
        margin-top: 20px;
    }
}

/* Video control button */
.hero-section-yt-video-control {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 4;
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
}

.hero-section-yt-video-control:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

/* Loading indicator */
.hero-section-yt-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

.hero-section-yt-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: hero-section-yt-spin 1s ease-in-out infinite;
}

@keyframes hero-section-yt-spin {
    to { transform: rotate(360deg); }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-de2b6d2 *//* WordPress-compatible styles - all prefixed to avoid conflicts */
.hero-section-yt-wrapper {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.hero-section-yt {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
}

/* YouTube video container */
.hero-section-yt-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-section-yt-video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    pointer-events: none; /* Prevents interaction with iframe */
}

.hero-section-yt-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

/* Content styling */
.hero-section-yt-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 30px;
}

.hero-section-yt-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-section-yt-content p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-section-yt-cta {
    display: inline-block;
    background-color: #0073aa; /* WordPress admin color */
    color: #ffffff;
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.hero-section-yt-cta:hover {
    background-color: #005a87;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Left side PDF button - WordPress style */
.hero-section-yt-pdf-button {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero-section-yt-pdf-icon {
    width: 70px;
    height: 70px;
    background-color: #dc3232; /* WordPress red */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 3px solid #ffffff;
}

.hero-section-yt-pdf-icon:hover {
    background-color: #b22222;
    transform: scale(1.1);
}

.hero-section-yt-pdf-label {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 10px 18px;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

/* Right side social media buttons - WordPress style */
.hero-section-yt-social {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hero-section-yt-social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
}

.hero-section-yt-social-icon.facebook {
    background-color: #3b5998;
}

.hero-section-yt-social-icon.twitter {
    background-color: #1da1f2;
}

.hero-section-yt-social-icon.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.hero-section-yt-social-icon.linkedin {
    background-color: #0077b5;
}

.hero-section-yt-social-icon:hover {
    transform: scale(1.1);
}

.hero-section-yt-social-label {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #ffffff;
    text-align: center;
    position: absolute;
    right: 70px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.hero-section-yt-social-icon:hover .hero-section-yt-social-label {
    opacity: 1;
}

/* Responsive adjustments for WordPress */
@media (max-width: 1200px) {
    .hero-section-yt-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero-section-yt-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-section-yt-content p {
        font-size: 1.1rem;
    }
    
    .hero-section-yt-pdf-button {
        left: 20px;
    }
    
    .hero-section-yt-social {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .hero-section-yt {
        height: 90vh;
        min-height: 500px;
    }
    
    .hero-section-yt-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-section-yt-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .hero-section-yt-pdf-icon,
    .hero-section-yt-social-icon {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }
    
    .hero-section-yt-social-label {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-section-yt {
        height: 85vh;
        min-height: 450px;
    }
    
    .hero-section-yt-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-section-yt-pdf-button {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 30px;
        width: 100%;
        order: 3;
    }
    
    .hero-section-yt-social {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 20px;
        width: 100%;
        order: 2;
        gap: 15px;
    }
    
    .hero-section-yt-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        order: 1;
    }
    
    .hero-section-yt-cta {
        order: 4;
        margin-top: 20px;
    }
}

/* Video control button */
.hero-section-yt-video-control {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 4;
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
}

.hero-section-yt-video-control:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

/* Loading indicator */
.hero-section-yt-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

.hero-section-yt-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: hero-section-yt-spin 1s ease-in-out infinite;
}

@keyframes hero-section-yt-spin {
    to { transform: rotate(360deg); }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-795d90c *//* WordPress-compatible styles - all prefixed to avoid conflicts */
.hero-section-yt-wrapper {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.hero-section-yt {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
}

/* YouTube video container */
.hero-section-yt-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-section-yt-video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    pointer-events: none; /* Prevents interaction with iframe */
}

.hero-section-yt-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

/* Content styling */
.hero-section-yt-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 30px;
}

.hero-section-yt-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-section-yt-content p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-section-yt-cta {
    display: inline-block;
    background-color: #0073aa; /* WordPress admin color */
    color: #ffffff;
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.hero-section-yt-cta:hover {
    background-color: #005a87;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Left side PDF button - WordPress style */
.hero-section-yt-pdf-button {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero-section-yt-pdf-icon {
    width: 70px;
    height: 70px;
    background-color: #dc3232; /* WordPress red */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 3px solid #ffffff;
}

.hero-section-yt-pdf-icon:hover {
    background-color: #b22222;
    transform: scale(1.1);
}

.hero-section-yt-pdf-label {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 10px 18px;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

/* Right side social media buttons - WordPress style */
.hero-section-yt-social {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hero-section-yt-social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
}

.hero-section-yt-social-icon.facebook {
    background-color: #3b5998;
}

.hero-section-yt-social-icon.twitter {
    background-color: #1da1f2;
}

.hero-section-yt-social-icon.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.hero-section-yt-social-icon.linkedin {
    background-color: #0077b5;
}

.hero-section-yt-social-icon:hover {
    transform: scale(1.1);
}

.hero-section-yt-social-label {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #ffffff;
    text-align: center;
    position: absolute;
    right: 70px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.hero-section-yt-social-icon:hover .hero-section-yt-social-label {
    opacity: 1;
}

/* Responsive adjustments for WordPress */
@media (max-width: 1200px) {
    .hero-section-yt-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero-section-yt-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-section-yt-content p {
        font-size: 1.1rem;
    }
    
    .hero-section-yt-pdf-button {
        left: 20px;
    }
    
    .hero-section-yt-social {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .hero-section-yt {
        height: 90vh;
        min-height: 500px;
    }
    
    .hero-section-yt-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-section-yt-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .hero-section-yt-pdf-icon,
    .hero-section-yt-social-icon {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }
    
    .hero-section-yt-social-label {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-section-yt {
        height: 85vh;
        min-height: 450px;
    }
    
    .hero-section-yt-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-section-yt-pdf-button {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 30px;
        width: 100%;
        order: 3;
    }
    
    .hero-section-yt-social {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 20px;
        width: 100%;
        order: 2;
        gap: 15px;
    }
    
    .hero-section-yt-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        order: 1;
    }
    
    .hero-section-yt-cta {
        order: 4;
        margin-top: 20px;
    }
}

/* Video control button */
.hero-section-yt-video-control {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 4;
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
}

.hero-section-yt-video-control:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

/* Loading indicator */
.hero-section-yt-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

.hero-section-yt-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: hero-section-yt-spin 1s ease-in-out infinite;
}

@keyframes hero-section-yt-spin {
    to { transform: rotate(360deg); }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ab1d6b7 *//* WordPress-compatible styles - all prefixed to avoid conflicts */
.hero-section-yt-wrapper {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.hero-section-yt {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
}

/* YouTube video container */
.hero-section-yt-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-section-yt-video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    pointer-events: none; /* Prevents interaction with iframe */
}

.hero-section-yt-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

/* Content styling */
.hero-section-yt-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 30px;
}

.hero-section-yt-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-section-yt-content p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-section-yt-cta {
    display: inline-block;
    background-color: #0073aa; /* WordPress admin color */
    color: #ffffff;
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.hero-section-yt-cta:hover {
    background-color: #005a87;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Left side PDF button - WordPress style */
.hero-section-yt-pdf-button {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero-section-yt-pdf-icon {
    width: 70px;
    height: 70px;
    background-color: #dc3232; /* WordPress red */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 3px solid #ffffff;
}

.hero-section-yt-pdf-icon:hover {
    background-color: #b22222;
    transform: scale(1.1);
}

.hero-section-yt-pdf-label {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 10px 18px;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

/* Right side social media buttons - WordPress style */
.hero-section-yt-social {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hero-section-yt-social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
}

.hero-section-yt-social-icon.facebook {
    background-color: #3b5998;
}

.hero-section-yt-social-icon.twitter {
    background-color: #1da1f2;
}

.hero-section-yt-social-icon.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.hero-section-yt-social-icon.linkedin {
    background-color: #0077b5;
}

.hero-section-yt-social-icon:hover {
    transform: scale(1.1);
}

.hero-section-yt-social-label {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #ffffff;
    text-align: center;
    position: absolute;
    right: 70px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.hero-section-yt-social-icon:hover .hero-section-yt-social-label {
    opacity: 1;
}

/* Responsive adjustments for WordPress */
@media (max-width: 1200px) {
    .hero-section-yt-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero-section-yt-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-section-yt-content p {
        font-size: 1.1rem;
    }
    
    .hero-section-yt-pdf-button {
        left: 20px;
    }
    
    .hero-section-yt-social {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .hero-section-yt {
        height: 90vh;
        min-height: 500px;
    }
    
    .hero-section-yt-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-section-yt-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .hero-section-yt-pdf-icon,
    .hero-section-yt-social-icon {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }
    
    .hero-section-yt-social-label {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-section-yt {
        height: 85vh;
        min-height: 450px;
    }
    
    .hero-section-yt-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-section-yt-pdf-button {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 30px;
        width: 100%;
        order: 3;
    }
    
    .hero-section-yt-social {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 20px;
        width: 100%;
        order: 2;
        gap: 15px;
    }
    
    .hero-section-yt-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        order: 1;
    }
    
    .hero-section-yt-cta {
        order: 4;
        margin-top: 20px;
    }
}

/* Video control button */
.hero-section-yt-video-control {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 4;
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
}

.hero-section-yt-video-control:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

/* Loading indicator */
.hero-section-yt-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

.hero-section-yt-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: hero-section-yt-spin 1s ease-in-out infinite;
}

@keyframes hero-section-yt-spin {
    to { transform: rotate(360deg); }
}/* End custom CSS */