.demo-video-container {
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    height: 550px;
    border: 1px solid #e3f0fc;
}

.video-section {
    flex: 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px;
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.tabs-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 15px;
    gap: 8px;
    overflow-y: auto;
}

.tabs-section::-webkit-scrollbar {
    width: 6px;
}

.tabs-section::-webkit-scrollbar-thumb {
    background-color: #e3f0fc;
    border-radius: 10px;
}

.tab {
    /* background-color: #1e293b; */
    border: 1px solid transparent;
    padding: 14px 18px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s ease;
    flex-shrink: 0;
    font-weight: 600;
}

.tab:hover {
    border-color: #38bdf8;
}

.tab.active {
    background-color: #e3f0fc;
    color: #274699;
    font-weight: 600;
}

.demo-contact-container {
    display: flex;
    justify-content: space-around;
}

.demo-contact-container img {
    max-width: 500px;
    height: auto;
}

.video-controls {
    display: flex;
    justify-content: end;
    gap: 10px;
    margin-top: 10px;
}

.video-controls button {
    padding: 5px 10px;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s;
    font-size: 14px;
    border: 1px solid var(--primary-color);
}

.video-controls button:hover {
    background-color: #e3f0fc;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}


.tab i {
    display: none;
}

.tab.active i {
    display: inline;
}

.demo-form-container {
    min-width: 400px
}


@media (max-width: 768px) {
    .demo-video-container {
        flex-direction: column-reverse;
        height: auto;
    }

    .video-section {
        height: 300px;
    }

    .tabs-section {
        max-height: 250px;
    }

    .demo-form-container {
        min-width: 100%
    }

    .demo-contact-container {
        flex-direction: column;
    }

}