::-webkit-scrollbar {
    display: none;
}

.video-banner {
    margin-top: 0;
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

    .video-banner iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100vw;
        height: 56.25vw;
        min-height: 100vh;
        pointer-events: none;
        z-index: 1;
    }

iframe {
    width: 100vw;
    height: 100vh;
}

.video-banner .container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    z-index: 1;
    display:none;
}

/*@media (max-width: 426px) {
    .video-banner .container {
        text-align: center;
    }
}*/

@media (max-width: 768px) {
    .video-banner iframe {
        min-height: 0vh !important;
    }
}

@media (max-width: 1024px) {
    .video-banner iframe {
        min-height: 0vh !important;
    }
}

@media (max-width: 1440px) {
    .video-banner iframe {
        min-height: 0vh !important;
    }
}
@media (max-width: 2560px) {
    .video-banner iframe {
        min-height: 0vh !important;
    }
}

.call-us-container {
    width: 60px;
    height: 60px;
    transition: width 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    position: relative;
    border-bottom-left-radius: 50px;
    border-top-left-radius: 50px;
}

    .call-us-container:hover {
        width: 220px;
    }

.call-icon {
    transition: opacity 0.3s ease-in-out;
    flex-shrink: 0;
    margin-right: 10px;
}

.phone-number {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.call-us-container:hover .phone-number {
    opacity: 1;
    visibility: visible;
}

.call-us-container:hover .call-icon {
    opacity: 0;
}

.call-us-container .phone-number {
    opacity: 0;
    visibility: hidden;
}

.call-us-container:hover .phone-number {
    opacity: 1;
    visibility: visible;
}

.call-us-container:hover .call-icon {
    opacity: 1;
}

/*#header-content {
    display: none;
}

@media (max-width: 468px) {
    #header-content {
        display: block;
    }
}
*/
@media (max-width: 768px) and (min-width : 426px) {
    #header-content {
        display: block;
        padding-bottom:10px;
        padding-top:10px;
    }

    .text-hide {
        display: none;
    }
    .video-banner .container {
        text-align: center;
    }
}
@media (max-width: 426px) {
    #header-content {
        display: block;
    }
}

.image-container {
    position: relative;
}

.address-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    max-width: 80%;
}

.nav-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 10px;
    text-decoration: none;
    font-size: 2rem;
    transition: background 0.3s ease;
}

    .nav-icon:hover {
        background: rgba(0, 0, 0, 0.8);
    }

.accordion-toggle::after {
    font-family: 'Font Awesome 5 Free';
    content: "\f107"; /* down arrow */
    float: right;
    font-weight: 900;
    transition: transform 0.3s ease;
}

.accordion-toggle:not(.collapsed)::after {
    transform: rotate(180deg); /* up arrow on open */
}
#whatsapp-chat {
    position: fixed;
    bottom: 20px;
    right: 80px;
    z-index: 9999;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    text-align: center;
    font-size: 30px;
    line-height: 60px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: background 0.3s ease;
}

    #whatsapp-chat:hover {
        background-color: #128c7e;
    }


.no-underline {
    text-decoration: none !important;
}

    .no-underline:hover {
        text-decoration: none !important;
    }
